src/hotspot/share/c1/c1_GraphBuilder.cpp
changeset 48024 6199dfaf72da
parent 47216 71c04702a3d5
child 48310 0dc66cdf4720
--- a/src/hotspot/share/c1/c1_GraphBuilder.cpp	Wed Nov 22 16:08:39 2017 -0800
+++ b/src/hotspot/share/c1/c1_GraphBuilder.cpp	Wed Nov 22 09:27:06 2017 -0800
@@ -3441,6 +3441,7 @@
   if ( callee->is_native())            return "native method";
   if ( callee->is_abstract())          return "abstract method";
   if (!callee->can_be_compiled())      return "not compilable (disabled)";
+  if (!callee->can_be_parsed())        return "cannot be parsed";
   return NULL;
 }