src/hotspot/share/opto/parse3.cpp
changeset 47765 b7c7428eaab9
parent 47216 71c04702a3d5
child 49359 59f6547e151f
--- a/src/hotspot/share/opto/parse3.cpp	Mon Oct 30 16:37:53 2017 +0100
+++ b/src/hotspot/share/opto/parse3.cpp	Tue Oct 31 11:55:09 2017 -0400
@@ -412,11 +412,11 @@
   // 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);
+    int 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