diff src/share/vm/opto/doCall.cpp @ 20340:fbc31318922c hs25.40-b06

Merge
author amurillo
date Thu, 21 Aug 2014 14:42:54 -0700
parents 411e30e5fbb8
children 331df100ad40
line wrap: on
line diff
--- a/src/share/vm/opto/doCall.cpp	Thu Aug 21 11:43:17 2014 -0700
+++ b/src/share/vm/opto/doCall.cpp	Thu Aug 21 14:42:54 2014 -0700
@@ -523,7 +523,7 @@
   // because exceptions don't return to the call site.)
   profile_call(receiver);
 
-  JVMState* new_jvms = cg->generate(jvms, this);
+  JVMState* new_jvms = cg->generate(jvms);
   if (new_jvms == NULL) {
     // When inlining attempt fails (e.g., too many arguments),
     // it may contaminate the current compile state, making it
@@ -537,7 +537,7 @@
     // intrinsic was expecting to optimize. Should always be possible to
     // get a normal java call that may inline in that case
     cg = C->call_generator(cg->method(), vtable_index, call_does_dispatch, jvms, try_inline, prof_factor(), speculative_receiver_type, /* allow_intrinsics= */ false);
-    if ((new_jvms = cg->generate(jvms, this)) == NULL) {
+    if ((new_jvms = cg->generate(jvms)) == NULL) {
       guarantee(failing(), "call failed to generate:  calls should work");
       return;
     }