diff -r f4290bf1cc21 -r f1e6442241ca test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/TestAssembler.java --- a/test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/TestAssembler.java Tue Oct 29 13:52:04 2019 -0700 +++ b/test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/TestAssembler.java Tue Oct 29 15:35:06 2019 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -206,7 +206,7 @@ private StackSlot deoptRescue; - public ValueKindFactory valueKindFactory = new ValueKindFactory() { + public ValueKindFactory valueKindFactory = new ValueKindFactory<>() { public TestValueKind getValueKind(JavaKind javaKind) { return (TestValueKind) TestAssembler.this.getValueKind(javaKind); } @@ -389,7 +389,7 @@ public abstract void emitLoad(AllocatableValue av, Object prim); /** - * Emit a call to a fixed address addr + * Emit a call to a fixed address addr. */ public abstract void emitCall(long addr);