< prev index next >

test/compiler/c2/Test6661247.java

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

*** 24,43 **** /* * @test * @bug 6661247 * @summary Internal bug in 32-bit HotSpot optimizer while bit manipulations */ import java.util.Random; - import java.nio.*; // This isn't a completely reliable test for 6661247 since the results // depend on what the local schedule looks like but it does reproduce // the issue in current builds. ! public class Test { public static void test(boolean[] src, int srcPos, LongBuffer dest, long destPos, int count) { int countStart = (destPos & 63) == 0 ? 0 : 64 - (int)(destPos & 63); if (countStart > count) countStart = count; --- 24,47 ---- /* * @test * @bug 6661247 * @summary Internal bug in 32-bit HotSpot optimizer while bit manipulations + * + * @run main compiler.c2.Test6661247 */ + package compiler.c2; + + import java.nio.LongBuffer; import java.util.Random; // This isn't a completely reliable test for 6661247 since the results // depend on what the local schedule looks like but it does reproduce // the issue in current builds. ! public class Test6661247 { public static void test(boolean[] src, int srcPos, LongBuffer dest, long destPos, int count) { int countStart = (destPos & 63) == 0 ? 0 : 64 - (int)(destPos & 63); if (countStart > count) countStart = count;
< prev index next >