--- old/src/hotspot/share/opto/phaseX.cpp 2017-10-26 15:24:10.434453558 -0400 +++ new/src/hotspot/share/opto/phaseX.cpp 2017-10-26 15:24:09.987484371 -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];