comparison src/share/vm/oops/methodOop.cpp @ 3749:9dd6c4ba364f

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
author coleenp
date Thu, 02 Jun 2011 14:17:48 -0400
parents d3b9f2be46ab
children 81d815b05abb 4bf3cbef0b3e
comparison
equal deleted inserted replaced
3748:d3b9f2be46ab 3749:9dd6c4ba364f
718 // normal calls. For vtable calls life gets more complicated. When a 718 // normal calls. For vtable calls life gets more complicated. When a
719 // call-site goes mega-morphic we need adapters in all methods which can be 719 // call-site goes mega-morphic we need adapters in all methods which can be
720 // called from the vtable. We need adapters on such methods that get loaded 720 // called from the vtable. We need adapters on such methods that get loaded
721 // later. Ditto for mega-morphic itable calls. If this proves to be a 721 // later. Ditto for mega-morphic itable calls. If this proves to be a
722 // problem we'll make these lazily later. 722 // problem we'll make these lazily later.
723 if (UseCompiler) (void) make_adapters(h_method, CHECK); 723 (void) make_adapters(h_method, CHECK);
724 724
725 // ONLY USE the h_method now as make_adapter may have blocked 725 // ONLY USE the h_method now as make_adapter may have blocked
726 726
727 } 727 }
728 728