aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/opto
diff options
context:
space:
mode:
authorbharadwaj <none@none>2012-11-15 10:42:06 -0800
committerbharadwaj <none@none>2012-11-15 10:42:06 -0800
commit1ac328b6579dd4716b983c1743384ba82b79b354 (patch)
tree4af0f5172077b1584a68539d7edae74571021e04 /src/share/vm/opto
parenta0a063373b4bea636f530a6f1d8535108015c0f0 (diff)
8001077: remove ciMethod::will_link
Summary: Removed will_link and changed all calls to is_loaded(). Reviewed-by: kvn
Diffstat (limited to 'src/share/vm/opto')
-rw-r--r--src/share/vm/opto/doCall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/vm/opto/doCall.cpp b/src/share/vm/opto/doCall.cpp
index 95d148841..ba806d79c 100644
--- a/src/share/vm/opto/doCall.cpp
+++ b/src/share/vm/opto/doCall.cpp
@@ -334,7 +334,7 @@ bool Parse::can_not_compile_call_site(ciMethod *dest_method, ciInstanceKlass* kl
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;
}