--- old/test/runtime/Unsafe/SetMemory.java 2016-09-12 13:57:31.405352454 -0400 +++ new/test/runtime/Unsafe/SetMemory.java 2016-09-12 13:57:30.870193509 -0400 @@ -30,13 +30,12 @@ * @run main SetMemory */ -import jdk.test.lib.unsafe.UnsafeHelper; import jdk.internal.misc.Unsafe; import static jdk.test.lib.Asserts.*; public class SetMemory { public static void main(String args[]) throws Exception { - Unsafe unsafe = UnsafeHelper.getUnsafe(); + Unsafe unsafe = Unsafe.getUnsafe(); long address = unsafe.allocateMemory(1); assertNotEquals(address, 0L); unsafe.setMemory(address, 1, (byte)17);