< prev index next >

src/share/vm/memory/generation.cpp

Print this page
rev 8070 : imported patch gencollected_heap_cleanup

@@ -185,11 +185,11 @@
 // Ignores "ref" and calls allocate().
 oop Generation::promote(oop obj, size_t obj_size) {
   assert(obj_size == (size_t)obj->size(), "bad obj_size passed in");
 
 #ifndef PRODUCT
-  if (Universe::heap()->promotion_should_fail()) {
+  if (GenCollectedHeap::heap()->promotion_should_fail()) {
     return NULL;
   }
 #endif  // #ifndef PRODUCT
 
   HeapWord* result = allocate(obj_size, false);
< prev index next >