< prev index next >

test/compiler/codegen/Test6875866.java

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

*** 24,38 **** /** * @test * @bug 6875866 * @summary Intrinsic for String.indexOf() is broken on x86 with SSE4.2 * ! * @run main/othervm -Xcomp Test */ - public class Test { static int IndexOfTest(String str) { return str.indexOf("11111xx1x"); } public static void main(String args[]) { --- 24,41 ---- /** * @test * @bug 6875866 * @summary Intrinsic for String.indexOf() is broken on x86 with SSE4.2 * ! * @run main/othervm -Xcomp compiler.codegen.Test6875866 */ + package compiler.codegen; + + public class Test6875866 { + static int IndexOfTest(String str) { return str.indexOf("11111xx1x"); } public static void main(String args[]) {
< prev index next >