< prev index next >

src/share/vm/memory/iterator.inline.hpp

Print this page
rev 12854 : [mq]: gcinterface.patch

@@ -55,11 +55,11 @@
 void ExtendedOopClosure::verify(T* p) {
   if (should_verify_oops()) {
     T heap_oop = oopDesc::load_heap_oop(p);
     if (!oopDesc::is_null(heap_oop)) {
       oop o = oopDesc::decode_heap_oop_not_null(heap_oop);
-      assert(Universe::heap()->is_in_closed_subset(o),
+      assert(GC::gc()->heap()->is_in_closed_subset(o),
              "should be in closed *p " PTR_FORMAT " " PTR_FORMAT, p2i(p), p2i(o));
     }
   }
 }
 #endif
< prev index next >