--- old/src/share/vm/interpreter/bytecodeInterpreter.inline.hpp 2017-08-17 11:32:27.554215441 -0400 +++ new/src/share/vm/interpreter/bytecodeInterpreter.inline.hpp 2017-08-17 11:32:27.236634932 -0400 @@ -36,7 +36,7 @@ #ifdef ASSERT #define VERIFY_OOP(o_) \ if (VerifyOops) { \ - assert((oop(o_))->is_oop_or_null(), "Expected an oop or NULL at " PTR_FORMAT, p2i(oop(o_))); \ + assert(oopDesc::is_oop_or_null(oop(o_)), "Expected an oop or NULL at " PTR_FORMAT, p2i(oop(o_))); \ StubRoutines::_verify_oop_count++; \ } #else