diff 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
line wrap: on
line diff
--- a/src/share/vm/opto/doCall.cpp	Mon Nov 12 14:03:53 2012 -0800
+++ b/src/share/vm/opto/doCall.cpp	Thu Nov 15 10:42:06 2012 -0800
@@ -334,7 +334,7 @@
     return true;
   }
 
-  assert(dest_method->will_link(method()->holder(), klass, bc()), "dest_method: typeflow responsibility");
+  assert(dest_method->is_loaded(), "dest_method: typeflow responsibility");
   return false;
 }