hotspot/src/share/vm/opto/divnode.cpp
changeset 24425 53764d2358f9
parent 23528 8f1a7f5e8066
child 24923 9631f7d691dc
--- a/hotspot/src/share/vm/opto/divnode.cpp	Tue May 06 09:56:55 2014 -0400
+++ b/hotspot/src/share/vm/opto/divnode.cpp	Wed May 07 06:03:31 2014 -0700
@@ -514,7 +514,7 @@
   int widen = MAX2(i1->_widen, i2->_widen);
 
   if( i2->is_con() && i2->get_con() != 0 ) {
-    int32 d = i2->get_con(); // Divisor
+    int32_t d = i2->get_con(); // Divisor
     jint lo, hi;
     if( d >= 0 ) {
       lo = i1->_lo/d;
@@ -536,7 +536,7 @@
 
   // If the dividend is a constant
   if( i1->is_con() ) {
-    int32 d = i1->get_con();
+    int32_t d = i1->get_con();
     if( d < 0 ) {
       if( d == min_jint ) {
         //  (-min_jint) == min_jint == (min_jint / -1)