hotspot/src/share/vm/code/nmethod.cpp
changeset 17872 2c49e72dcf08
parent 17358 c976a07a0dd5
child 18073 f02460441ddc
--- a/hotspot/src/share/vm/code/nmethod.cpp	Thu May 30 08:37:08 2013 -0700
+++ b/hotspot/src/share/vm/code/nmethod.cpp	Fri May 31 14:40:26 2013 +0200
@@ -1976,11 +1976,10 @@
   if (!method()->is_native()) {
     SimpleScopeDesc ssd(this, fr.pc());
     Bytecode_invoke call(ssd.method(), ssd.bci());
-    // compiled invokedynamic call sites have an implicit receiver at
-    // resolution time, so make sure it gets GC'ed.
-    bool has_receiver = !call.is_invokestatic();
+    bool has_receiver = call.has_receiver();
+    bool has_appendix = call.has_appendix();
     Symbol* signature = call.signature();
-    fr.oops_compiled_arguments_do(signature, has_receiver, reg_map, f);
+    fr.oops_compiled_arguments_do(signature, has_receiver, has_appendix, reg_map, f);
   }
 #endif // !SHARK
 }