We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c788d98 commit ecf83c9Copy full SHA for ecf83c9
src/hotspot/share/oops/compressedOops.cpp
@@ -79,7 +79,7 @@ void CompressedOops::initialize(const ReservedHeapSpace& heap_space) {
79
false));
80
81
// base() is one page below the heap.
82
- assert((intptr_t)base() <= (intptr_t)(_heap_address_range.start() - os::vm_page_size()) ||
+ assert((intptr_t)base() <= ((intptr_t)_heap_address_range.start() - os::vm_page_size()) ||
83
base() == NULL, "invalid value");
84
assert(shift() == LogMinObjAlignmentInBytes ||
85
shift() == 0, "invalid value");
0 commit comments