--- old/src/hotspot/share/opto/phaseX.cpp 2017-10-25 08:17:22.604163447 -0400 +++ new/src/hotspot/share/opto/phaseX.cpp 2017-10-25 08:17:22.276873145 -0400 @@ -723,7 +723,7 @@ //------------------------------intcon----------------------------------------- // Fast integer constant. Same as "transform(new ConINode(TypeInt::make(i)))" -ConINode* PhaseTransform::intcon(int i) { +ConINode* PhaseTransform::intcon(jint i) { // Small integer? Check cache! Check that cached node is not dead if (i >= _icon_min && i <= _icon_max) { ConINode* icon = _icons[i-_icon_min];