hotspot/src/share/vm/classfile/verifier.cpp
changeset 25714 87fa6860b5ae
parent 24663 48203b12ee8e
child 25717 7493b8ac31b7
--- a/hotspot/src/share/vm/classfile/verifier.cpp	Wed Jul 16 15:04:36 2014 -0700
+++ b/hotspot/src/share/vm/classfile/verifier.cpp	Thu Jul 17 15:45:46 2014 -0400
@@ -439,7 +439,7 @@
   if (_bci != -1 && method != NULL) {
     streamIndentor si(ss);
     const char* bytecode_name = "<invalid>";
-    if (method->validate_bci_from_bcx(_bci) != -1) {
+    if (method->validate_bci(_bci) != -1) {
       Bytecodes::Code code = Bytecodes::code_or_bp_at(method->bcp_from(_bci));
       if (Bytecodes::is_defined(code)) {
           bytecode_name = Bytecodes::name(code);