< prev index next >

test/compiler/c2/Test6968348.java

Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke

*** 24,41 **** /** * @test * @bug 6968348 * @summary Byteswapped memory access can point to wrong location after JIT - * * @modules java.base/jdk.internal.misc ! * @run main Test6968348 */ import jdk.internal.misc.Unsafe; - import java.lang.reflect.*; public class Test6968348 { static Unsafe unsafe; static final long[] buffer = new long[4096]; static int array_long_base_offset; --- 24,44 ---- /** * @test * @bug 6968348 * @summary Byteswapped memory access can point to wrong location after JIT * @modules java.base/jdk.internal.misc ! * ! * @run main compiler.c2.Test6968348 */ + package compiler.c2; + import jdk.internal.misc.Unsafe; + import java.lang.reflect.Field; + public class Test6968348 { static Unsafe unsafe; static final long[] buffer = new long[4096]; static int array_long_base_offset;
< prev index next >