comparison src/share/vm/opto/doCall.cpp @ 6973:bb33c6fdcf0d

8001077: remove ciMethod::will_link Summary: Removed will_link and changed all calls to is_loaded(). Reviewed-by: kvn
author bharadwaj
date Thu, 15 Nov 2012 10:42:06 -0800
parents a3ecd773a7b9
children beebba0acc11
comparison
equal deleted inserted replaced
6972:bd7a7ce2e264 6973:bb33c6fdcf0d
332 Deoptimization::Action_reinterpret, 332 Deoptimization::Action_reinterpret,
333 holder_klass); 333 holder_klass);
334 return true; 334 return true;
335 } 335 }
336 336
337 assert(dest_method->will_link(method()->holder(), klass, bc()), "dest_method: typeflow responsibility"); 337 assert(dest_method->is_loaded(), "dest_method: typeflow responsibility");
338 return false; 338 return false;
339 } 339 }
340 340
341 341
342 //------------------------------do_call---------------------------------------- 342 //------------------------------do_call----------------------------------------