# HG changeset patch # User iklam # Date 1535497261 25200 # Node ID 0369fe9ae26fdcc2107de1202f51066ae56ee8c9 # Parent 30a2c149fd7e68d011cab54b70584238b3ecad20 8210043: Invalid assert(HeapBaseMinAddress > 0) in ReservedHeapSpace::initialize_compressed_heap Summary: Removed the assert Reviewed-by: ccheung, jiangli diff -r 30a2c149fd7e -r 0369fe9ae26f src/hotspot/share/memory/virtualspace.cpp --- a/src/hotspot/share/memory/virtualspace.cpp Tue Aug 28 16:18:58 2018 -0700 +++ b/src/hotspot/share/memory/virtualspace.cpp Tue Aug 28 16:01:01 2018 -0700 @@ -490,7 +490,6 @@ guarantee(size + noaccess_prefix_size(alignment) <= OopEncodingHeapMax, "can not allocate compressed oop heap for this size"); guarantee(alignment == MAX2(alignment, (size_t)os::vm_page_size()), "alignment too small"); - assert(HeapBaseMinAddress > 0, "sanity"); const size_t granularity = os::vm_allocation_granularity(); assert((size & (granularity - 1)) == 0,