src/share/vm/oops/method.cpp

changeset 6039
bd3237e0e18d
parent 5848
ac9cb1d5a202
child 6429
606acabe7b5c
     1.1 --- a/src/share/vm/oops/method.cpp	Wed Oct 23 19:22:28 2013 +0000
     1.2 +++ b/src/share/vm/oops/method.cpp	Thu Oct 24 16:23:07 2013 -0700
     1.3 @@ -1515,7 +1515,10 @@
     1.4        return bp->orig_bytecode();
     1.5      }
     1.6    }
     1.7 -  ShouldNotReachHere();
     1.8 +  {
     1.9 +    ResourceMark rm;
    1.10 +    fatal(err_msg("no original bytecode found in %s at bci %d", name_and_sig_as_C_string(), bci));
    1.11 +  }
    1.12    return Bytecodes::_shouldnotreachhere;
    1.13  }
    1.14  

mercurial