src/hotspot/share/memory/heapShared.cpp
changeset 51720 b7bfd64e43a6
parent 51701 9012aeaf993b
child 51796 9d3a00c8c047
--- a/src/hotspot/share/memory/heapShared.cpp	Wed Sep 12 16:28:06 2018 -0700
+++ b/src/hotspot/share/memory/heapShared.cpp	Wed Sep 12 17:45:22 2018 -0700
@@ -834,7 +834,7 @@
     narrowOop* p = _start + offset;
     narrowOop v = *p;
     assert(!CompressedOops::is_null(v), "null oops should have been filtered out at dump time");
-    oop o = HeapShared::decode_with_archived_oop_encoding_mode(v);
+    oop o = HeapShared::decode_from_archive(v);
     RawAccess<IS_NOT_NULL>::oop_store(p, o);
     return true;
   }