hotspot/src/share/vm/oops/method.cpp
changeset 46589 f1c04490ded1
parent 46408 70aab0c2ea8b
child 46619 a3919f5e8d2b
--- a/hotspot/src/share/vm/oops/method.cpp	Wed Jun 28 20:21:04 2017 +0000
+++ b/hotspot/src/share/vm/oops/method.cpp	Wed Jun 28 19:12:58 2017 -0400
@@ -59,6 +59,7 @@
 #include "runtime/sharedRuntime.hpp"
 #include "runtime/signature.hpp"
 #include "utilities/quickSort.hpp"
+#include "utilities/vmError.hpp"
 #include "utilities/xmlstream.hpp"
 
 // Implementation of Method
@@ -242,7 +243,7 @@
 #ifdef ASSERT
   {
     ResourceMark rm;
-    assert(is_native() && bcp == code_base() || contains(bcp) || is_error_reported(),
+    assert(is_native() && bcp == code_base() || contains(bcp) || VMError::is_error_reported(),
            "bcp doesn't belong to this method: bcp: " INTPTR_FORMAT ", method: %s",
            p2i(bcp), name_and_sig_as_C_string());
   }