< prev index next >

src/hotspot/share/opto/loopTransform.cpp

Print this page

        

@@ -2127,11 +2127,11 @@
       Node *cmp = bol->in(1);
 
       // Look for trip_counter + offset vs limit
       Node *rc_exp = cmp->in(1);
       Node *limit  = cmp->in(2);
-      jint scale_con= 1;        // Assume trip counter not scaled
+      int scale_con= 1;        // Assume trip counter not scaled
 
       Node *limit_c = get_ctrl(limit);
       if( loop->is_member(get_loop(limit_c) ) ) {
         // Compare might have operands swapped; commute them
         b_test = b_test.commute();
< prev index next >