hotspot/src/share/vm/memory/allocation.cpp
changeset 22243 91944eab7b92
parent 19696 bd5a0131bde1
child 22248 34f19df648a2
--- a/hotspot/src/share/vm/memory/allocation.cpp	Wed Jan 08 12:05:19 2014 +0100
+++ b/hotspot/src/share/vm/memory/allocation.cpp	Wed Jan 08 10:25:50 2014 -0800
@@ -140,7 +140,7 @@
 void ResourceObj::set_allocation_type(address res, allocation_type type) {
     // Set allocation type in the resource object
     uintptr_t allocation = (uintptr_t)res;
-    assert((allocation & allocation_mask) == 0, "address should be aligned to 4 bytes at least");
+    assert((allocation & allocation_mask) == 0, err_msg("address should be aligned to 4 bytes at least: " PTR_FORMAT, res));
     assert(type <= allocation_mask, "incorrect allocation type");
     ResourceObj* resobj = (ResourceObj *)res;
     resobj->_allocation_t[0] = ~(allocation + type);