< prev index next >

src/hotspot/share/opto/parse3.cpp

Print this page

        

@@ -410,13 +410,13 @@
   for (j = ndimensions-1; j >= 0 ; j--) length[j] = pop();
 
   // The original expression was of this form: new T[length0][length1]...
   // It is often the case that the lengths are small (except the last).
   // If that happens, use the fast 1-d creator a constant number of times.
-  const jint expand_limit = MIN2((jint)MultiArrayExpandLimit, 100);
-  jint expand_count = 1;        // count of allocations in the expansion
-  jint expand_fanout = 1;       // running total fanout
+  const int expand_limit = MIN2((int)MultiArrayExpandLimit, 100);
+  int expand_count = 1;        // count of allocations in the expansion
+  int expand_fanout = 1;       // running total fanout
   for (j = 0; j < ndimensions-1; j++) {
     jint dim_con = find_int_con(length[j], -1);
     expand_fanout *= dim_con;
     expand_count  += expand_fanout; // count the level-J sub-arrays
     if (dim_con <= 0
< prev index next >