< prev index next >

src/share/vm/interpreter/bytecodeInterpreter.inline.hpp

Print this page
rev 8978 : imported patch remove_err_msg

*** 33,43 **** #ifdef CC_INTERP #ifdef ASSERT #define VERIFY_OOP(o_) \ if (VerifyOops) { \ ! assert((oop(o_))->is_oop_or_null(), err_msg("Expected an oop or NULL at " PTR_FORMAT, p2i(oop(o_)))); \ StubRoutines::_verify_oop_count++; \ } #else #define VERIFY_OOP(o) #endif --- 33,43 ---- #ifdef CC_INTERP #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_))); \ StubRoutines::_verify_oop_count++; \ } #else #define VERIFY_OOP(o) #endif
< prev index next >