< prev index next >

src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.cpp

Print this page
rev 8031 : imported patch cms

@@ -25,12 +25,10 @@
 #include "precompiled.hpp"
 #include "gc_implementation/concurrentMarkSweep/freeChunk.hpp"
 #include "memory/freeBlockDictionary.hpp"
 #include "utilities/copy.hpp"
 
-PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
-
 #ifndef PRODUCT
 
 #define baadbabeHeapWord badHeapWordVal
 #define deadbeefHeapWord 0xdeadbeef
 

@@ -72,7 +70,7 @@
 }
 #endif
 
 void FreeChunk::print_on(outputStream* st) {
   st->print_cr("Next: " PTR_FORMAT " Prev: " PTR_FORMAT " %s",
-    next(), prev(), cantCoalesce() ? "[can't coalesce]" : "");
+    p2i(next()), p2i(prev()), cantCoalesce() ? "[can't coalesce]" : "");
 }
< prev index next >