diff -r 39063b484ec2 -r 9119841280f4 hotspot/src/share/vm/runtime/thread.cpp --- a/hotspot/src/share/vm/runtime/thread.cpp Wed Aug 23 10:25:25 2017 +0200 +++ b/hotspot/src/share/vm/runtime/thread.cpp Wed Aug 23 14:52:55 2017 -0400 @@ -3187,7 +3187,7 @@ oop obj = oopDesc::load_decode_heap_oop(p); if (obj == NULL) return; tty->print(INTPTR_FORMAT ": ", p2i(p)); - if (obj->is_oop_or_null()) { + if (oopDesc::is_oop_or_null(obj)) { if (obj->is_objArray()) { tty->print_cr("valid objArray: " INTPTR_FORMAT, p2i(obj)); } else {