hotspot/test/compiler/loopopts/superword/TestVectorizationWithInvariant.java
changeset 41092 c388d897472d
parent 40855 3c4c913195e3
child 41705 332239c052cc
--- a/hotspot/test/compiler/loopopts/superword/TestVectorizationWithInvariant.java	Tue Sep 13 21:29:30 2016 +0000
+++ b/hotspot/test/compiler/loopopts/superword/TestVectorizationWithInvariant.java	Wed Sep 14 08:17:50 2016 -0400
@@ -34,7 +34,6 @@
 package compiler.loopopts.superword;
 
 import jdk.internal.misc.Unsafe;
-import jdk.test.lib.unsafe.UnsafeHelper;
 
 public class TestVectorizationWithInvariant {
 
@@ -43,7 +42,7 @@
     private static final long CHAR_ARRAY_OFFSET;
 
     static {
-        unsafe = UnsafeHelper.getUnsafe();
+        unsafe = Unsafe.getUnsafe();
         BYTE_ARRAY_OFFSET = unsafe.arrayBaseOffset(byte[].class);
         CHAR_ARRAY_OFFSET = unsafe.arrayBaseOffset(char[].class);
     }