< prev index next >
test/compiler/codegen/Test6875866.java
Print this page
rev 11557 : 8132919: use package in compiler tests
Reviewed-by: duke
@@ -24,15 +24,18 @@
/**
* @test
* @bug 6875866
* @summary Intrinsic for String.indexOf() is broken on x86 with SSE4.2
*
- * @run main/othervm -Xcomp Test
+ * @run main/othervm -Xcomp compiler.codegen.Test6875866
*/
-public class Test {
+package compiler.codegen;
+
+public class Test6875866 {
+
static int IndexOfTest(String str) {
return str.indexOf("11111xx1x");
}
public static void main(String args[]) {
< prev index next >