hotspot/src/share/vm/code/nmethod.cpp
changeset 4567 7fc02fbe5c7a
parent 4564 55dfb20908d0
child 4570 43d30f43697e
--- a/hotspot/src/share/vm/code/nmethod.cpp	Tue Jan 05 13:05:58 2010 +0100
+++ b/hotspot/src/share/vm/code/nmethod.cpp	Tue Jan 05 15:21:25 2010 +0100
@@ -1724,9 +1724,9 @@
   if (!method()->is_native()) {
     SimpleScopeDesc ssd(this, fr.pc());
     Bytecode_invoke* call = Bytecode_invoke_at(ssd.method(), ssd.bci());
-    bool is_static = call->is_invokestatic();
+    bool has_receiver = call->has_receiver();
     symbolOop signature = call->signature();
-    fr.oops_compiled_arguments_do(signature, is_static, reg_map, f);
+    fr.oops_compiled_arguments_do(signature, has_receiver, reg_map, f);
   }
 }