OpenJDK / jdk / jdk
changeset 54768:6f6b636d2909
8223583: Build failure after JDK-8223567 (Rename ShenandoahBrooksPointer to ShenandoahForwarding)
Reviewed-by: rkennke
author | shade |
---|---|
date | Wed, 08 May 2019 21:32:38 +0200 |
parents | 6ccc7cd7931e |
children | 925ee7a89325 |
files | src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp Wed May 08 11:56:19 2019 -0700 +++ b/src/hotspot/share/gc/shenandoah/shenandoahVerifier.cpp Wed May 08 21:32:38 2019 +0200 @@ -927,7 +927,7 @@ T o = RawAccess<>::oop_load(p); if (!CompressedOops::is_null(o)) { oop obj = CompressedOops::decode_not_null(o); - oop fwd = (oop) ShenandoahBrooksPointer::get_raw_unchecked(obj); + oop fwd = (oop) ShenandoahForwarding::get_forwardee_raw_unchecked(obj); if (!oopDesc::equals_raw(obj, fwd)) { ShenandoahAsserts::print_failure(ShenandoahAsserts::_safe_all, obj, p, NULL, "Verify Roots", "Should not be forwarded", __FILE__, __LINE__);