< prev index next >

test/compiler/c1/TestUnalignedLoad.java

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

*** 24,37 **** /** * @test * @bug 6769124 * @summary unaligned load may fail with c1 on 64 bit */ ! public class TestUnalignedLoad6769124 { static long l1v = 0x200000003L; static long l2v = 0x400000005L; static double d1v = Double.MAX_VALUE; static double d2v = Double.MIN_VALUE; --- 24,41 ---- /** * @test * @bug 6769124 * @summary unaligned load may fail with c1 on 64 bit + * + * @run main compiler.c1.TestUnalignedLoad */ ! package compiler.c1; + public class TestUnalignedLoad { + static long l1v = 0x200000003L; static long l2v = 0x400000005L; static double d1v = Double.MAX_VALUE; static double d2v = Double.MIN_VALUE;
< prev index next >