mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 10:04:42 +02:00
8221648: Remove CollectedHeap::is_in_closed_subset()
Reviewed-by: kbarrett, tschatzl
This commit is contained in:
parent
d06f3accec
commit
a7dd794beb
11 changed files with 11 additions and 61 deletions
|
@ -56,7 +56,7 @@ void OopIterateClosure::verify(T* p) {
|
|||
T heap_oop = RawAccess<>::oop_load(p);
|
||||
if (!CompressedOops::is_null(heap_oop)) {
|
||||
oop o = CompressedOops::decode_not_null(heap_oop);
|
||||
assert(Universe::heap()->is_in_closed_subset(o),
|
||||
assert(Universe::heap()->is_in(o),
|
||||
"should be in closed *p " PTR_FORMAT " " PTR_FORMAT, p2i(p), p2i(o));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue