< prev index next >

src/hotspot/share/gc/g1/g1CollectedHeap.inline.hpp

Print this page
@@ -280,11 +280,11 @@
    }
    return is_obj_ill(obj, heap_region_containing(obj));
  }
  
  inline bool G1CollectedHeap::is_obj_dead_full(const oop obj, const HeapRegion* hr) const {
-    return !is_marked_next(obj) && !hr->is_archive();
+    return !is_marked_next(obj) && !hr->is_closed_archive();
  }
  
  inline bool G1CollectedHeap::is_obj_dead_full(const oop obj) const {
      return is_obj_dead_full(obj, heap_region_containing(obj));
  }
< prev index next >