diff -r efdbe9b904ad -r f96fcd9e1e1b src/share/vm/gc_implementation/g1/heapRegionManager.inline.hpp --- a/src/share/vm/gc_implementation/g1/heapRegionManager.inline.hpp Tue Feb 23 18:58:36 2016 -0500 +++ b/src/share/vm/gc_implementation/g1/heapRegionManager.inline.hpp Thu Jun 14 09:15:08 2018 -0700 @@ -31,9 +31,9 @@ inline HeapRegion* HeapRegionManager::addr_to_region(HeapWord* addr) const { assert(addr < heap_end(), - err_msg("addr: "PTR_FORMAT" end: "PTR_FORMAT, p2i(addr), p2i(heap_end()))); + err_msg("addr: " PTR_FORMAT " end: " PTR_FORMAT, p2i(addr), p2i(heap_end()))); assert(addr >= heap_bottom(), - err_msg("addr: "PTR_FORMAT" bottom: "PTR_FORMAT, p2i(addr), p2i(heap_bottom()))); + err_msg("addr: " PTR_FORMAT " bottom: " PTR_FORMAT, p2i(addr), p2i(heap_bottom()))); HeapRegion* hr = _regions.get_by_address(addr); return hr;