< prev index next >

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

Print this page

        

@@ -34,11 +34,11 @@
 #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_))); \
+        assert(oopDesc::is_oop_or_null(oop(o_)), "Expected an oop or NULL at " PTR_FORMAT, p2i(oop(o_))); \
         StubRoutines::_verify_oop_count++;  \
       }
 #else
 #define VERIFY_OOP(o)
 #endif
< prev index next >