# HG changeset patch # User coleenp # Date 1307038668 14400 # Node ID deaa3ce905832d60b4aa0d96b77b8e8dd0c8ba8d # Parent c76d5f44a3fed2c0a765f03e90b5e354b2e7f4ec 7049928: VM crashes with "assert(_adapter != NULL) failed: must have" at methodOop.cpp:63 Summary: Removed extra change from another bug fix that caused this regression Reviewed-by: phh, dcubed, kvn, kamg, never diff -r c76d5f44a3fe -r deaa3ce90583 src/share/vm/oops/methodOop.cpp --- a/src/share/vm/oops/methodOop.cpp Wed Jun 01 23:25:31 2011 -0700 +++ b/src/share/vm/oops/methodOop.cpp Thu Jun 02 14:17:48 2011 -0400 @@ -720,7 +720,7 @@ // called from the vtable. We need adapters on such methods that get loaded // later. Ditto for mega-morphic itable calls. If this proves to be a // problem we'll make these lazily later. - if (UseCompiler) (void) make_adapters(h_method, CHECK); + (void) make_adapters(h_method, CHECK); // ONLY USE the h_method now as make_adapter may have blocked