Skip to content

Commit 9397094

Browse files
author
Thomas Schatzl
committed
8310540: G1: Verification should use raw oop decode functions
Reviewed-by: ayang, kbarrett
1 parent 013367b commit 9397094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/gc/g1/heapRegion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ class G1VerifyLiveAndRemSetClosure : public BasicOopIterateClosure {
618618
if (CompressedOops::is_null(heap_oop)) {
619619
return;
620620
}
621-
oop obj = CompressedOops::decode_not_null(heap_oop);
621+
oop obj = CompressedOops::decode_raw_not_null(heap_oop);
622622

623623
LiveChecker<T> live_check(this, _containing_obj, p, obj, _vo);
624624
if (live_check.failed()) {

0 commit comments

Comments
 (0)