< prev index next >

src/share/vm/code/debugInfo.cpp

Print this page

        

@@ -46,11 +46,11 @@
   write_int(recorder()->oop_recorder()->find_index(h));
 }
 
 oop DebugInfoReadStream::read_oop() {
   oop o = code()->oop_at(read_int());
-  assert(o->is_oop_or_null(), "oop only");
+  assert(oopDesc::is_oop_or_null(o), "oop only");
   return o;
 }
 
 ScopeValue* DebugInfoReadStream::read_object_value() {
   int id = read_int();
< prev index next >