< prev index next >

src/share/vm/gc/g1/satbMarkQueue.cpp

Print this page

        

@@ -93,11 +93,11 @@
   assert(region != NULL, "No region for " PTR_FORMAT, p2i(entry));
   if (entry >= region->next_top_at_mark_start()) {
     return false;
   }
 
-  assert(((oop)entry)->is_oop(true /* ignore mark word */),
+  assert((oopDesc::is_oop(oop(entry)), true /* ignore mark word */),
          "Invalid oop in SATB buffer: " PTR_FORMAT, p2i(entry));
 
   return true;
 }
 
< prev index next >