diff src/share/vm/services/heapDumper.cpp @ 12316:190899198332

7195622: CheckUnhandledOops has limited usefulness now Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms. Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin Contributed-by: lois.foltan@oracle.com
author hseigel
date Thu, 26 Sep 2013 10:25:02 -0400
parents 8391fdd36e1f
children 539144972c1e
line wrap: on
line diff
--- a/src/share/vm/services/heapDumper.cpp	Wed Sep 25 17:47:51 2013 +0200
+++ b/src/share/vm/services/heapDumper.cpp	Thu Sep 26 10:25:02 2013 -0400
@@ -563,7 +563,7 @@
 }
 
 void DumpWriter::write_objectID(oop o) {
-  address a = (address)((uintptr_t)o);
+  address a = (address)o;
 #ifdef _LP64
   write_u8((u8)a);
 #else