src/hotspot/share/opto/bytecodeInfo.cpp
changeset 48024 6199dfaf72da
parent 48002 0c88cd009b5f
child 50113 caf115bb98ad
--- a/src/hotspot/share/opto/bytecodeInfo.cpp	Wed Nov 22 16:08:39 2017 -0800
+++ b/src/hotspot/share/opto/bytecodeInfo.cpp	Wed Nov 22 09:27:06 2017 -0800
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -480,6 +480,7 @@
   if ( callee->is_abstract())                   return "abstract method";
   if (!callee->has_balanced_monitors())         return "not compilable (unbalanced monitors)";
   if ( callee->get_flow_analysis()->failing())  return "not compilable (flow analysis failed)";
+  if (!callee->can_be_parsed())                 return "cannot be parsed";
   return NULL;
 }