src/hotspot/share/compiler/oopMap.cpp
changeset 55310 966a51af2986
parent 54960 e46fe26d7f77
child 58083 9046db64ca39
--- a/src/hotspot/share/compiler/oopMap.cpp	Mon Jun 10 11:17:57 2019 +0100
+++ b/src/hotspot/share/compiler/oopMap.cpp	Mon Jun 10 12:52:56 2019 +0200
@@ -379,12 +379,8 @@
           continue;
         }
 #ifdef ASSERT
-        // We can not verify the oop here if we are using ZGC, the oop
-        // will be bad in case we had a safepoint between a load and a
-        // load barrier.
-        if (!UseZGC &&
-            ((((uintptr_t)loc & (sizeof(*loc)-1)) != 0) ||
-             !Universe::heap()->is_in_or_null(*loc))) {
+        if ((((uintptr_t)loc & (sizeof(*loc)-1)) != 0) ||
+            !Universe::heap()->is_in_or_null(*loc)) {
           tty->print_cr("# Found non oop pointer.  Dumping state at failure");
           // try to dump out some helpful debugging information
           trace_codeblob_maps(fr, reg_map);