hotspot/test/compiler/loopopts/CountedLoopProblem.java
changeset 40059 c2304140ed64
parent 29343 cf560f960e85
child 41705 332239c052cc
--- a/hotspot/test/compiler/loopopts/CountedLoopProblem.java	Tue Jul 12 08:42:46 2016 +0000
+++ b/hotspot/test/compiler/loopopts/CountedLoopProblem.java	Tue Jul 12 18:24:48 2016 +0300
@@ -26,11 +26,13 @@
  * @test
  * @bug 8072753
  * @summary Inner loop induction variable increment occurs before compare which causes integer overflow
- * @run main/othervm CountedLoopProblem
+ * @run main/othervm compiler.loopopts.CountedLoopProblem
  *
  */
 
-import java.util.*;
+package compiler.loopopts;
+
+import java.util.Random;
 
 public class CountedLoopProblem {
     public static void main(String[] args) throws Exception {