< prev index next >

test/compiler/intrinsics/bigInteger/TestMultiplyToLenReturnProfile.java

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

@@ -24,16 +24,19 @@
 
 /**
  * @test
  * @bug 8057758
  * @summary MultiplyToLen sets its return type to have a bottom offset which confuses code generation
- * @run main/othervm -XX:-TieredCompilation -XX:-BackgroundCompilation -XX:-UseOnStackReplacement -XX:TypeProfileLevel=222 TestMultiplyToLenReturnProfile
  *
+ * @run main/othervm -XX:-TieredCompilation -XX:-BackgroundCompilation -XX:-UseOnStackReplacement
+ *      -XX:TypeProfileLevel=222
+ *      compiler.intrinsics.bigInteger.TestMultiplyToLenReturnProfile
  */
 
+package compiler.intrinsics.bigInteger;
 
-import java.math.*;
+import java.math.BigInteger;
 
 public class TestMultiplyToLenReturnProfile {
 
     static BigInteger m(BigInteger i1, BigInteger i2) {
         BigInteger res = BigInteger.valueOf(0);
< prev index next >