< prev index next >

test/compiler/c2/cr7005594/Test7005594.java

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

@@ -28,10 +28,12 @@
  * @summary Array overflow not handled correctly with loop optimzations
  *
  * @run shell Test7005594.sh
  */
 
+package compiler.c2.cr7005594;
+
 public class Test7005594 {
 
       static int test(byte a[]){
           int result=0;
           for( int i=0; i<a.length; i+=((0x7fffffff>>1)+1) ){
< prev index next >