--- old/src/hotspot/share/code/debugInfo.hpp 2017-10-26 15:19:09.223586937 -0400 +++ new/src/hotspot/share/code/debugInfo.hpp 2017-10-26 15:19:08.894085571 -0400 @@ -146,9 +146,9 @@ class ConstantIntValue: public ScopeValue { private: - jint _value; + int _value; public: - ConstantIntValue(jint value) { _value = value; } + ConstantIntValue(int value) { _value = value; } jint value() const { return _value; } bool is_constant_int() const { return true; } bool equals(ScopeValue* other) const { return false; }