src/hotspot/share/opto/mulnode.cpp
changeset 47765 b7c7428eaab9
parent 47216 71c04702a3d5
child 51050 96ea37459ca7
--- a/src/hotspot/share/opto/mulnode.cpp	Mon Oct 30 16:37:53 2017 +0100
+++ b/src/hotspot/share/opto/mulnode.cpp	Tue Oct 31 11:55:09 2017 -0400
@@ -235,13 +235,13 @@
   const TypeInt *r1 = t1->is_int();
 
   // Fetch endpoints of all ranges
-  int32_t lo0 = r0->_lo;
+  jint lo0 = r0->_lo;
   double a = (double)lo0;
-  int32_t hi0 = r0->_hi;
+  jint hi0 = r0->_hi;
   double b = (double)hi0;
-  int32_t lo1 = r1->_lo;
+  jint lo1 = r1->_lo;
   double c = (double)lo1;
-  int32_t hi1 = r1->_hi;
+  jint hi1 = r1->_hi;
   double d = (double)hi1;
 
   // Compute all endpoints & check for overflow