src/hotspot/share/code/compiledIC.cpp
changeset 59056 15936b142f86
parent 58505 c16f3a24a6fc
--- a/src/hotspot/share/code/compiledIC.cpp	Wed Nov 13 11:27:50 2019 +0000
+++ b/src/hotspot/share/code/compiledIC.cpp	Wed Nov 13 08:23:23 2019 -0500
@@ -287,7 +287,7 @@
 
   if (TraceICs) {
     ResourceMark rm;
-    assert(!call_info->selected_method().is_null(), "Unexpected null selected method");
+    assert(call_info->selected_method() != NULL, "Unexpected null selected method");
     tty->print_cr ("IC@" INTPTR_FORMAT ": to megamorphic %s entry: " INTPTR_FORMAT,
                    p2i(instruction_address()), call_info->selected_method()->print_value_string(), p2i(entry));
   }