< prev index next >

src/hotspot/share/gc/shared/threadLocalAllocBuffer.cpp

Print this page

        

@@ -309,11 +309,11 @@
 void ThreadLocalAllocBuffer::verify() {
   HeapWord* p = start();
   HeapWord* t = top();
   HeapWord* prev_p = NULL;
   while (p < t) {
-    oop(p)->verify();
+    oopDesc::verify(oop(p));
     prev_p = p;
     p += oop(p)->size();
   }
   guarantee(p == top(), "end of last object must match end of space");
 }
< prev index next >