src/share/vm/code/nmethod.cpp

changeset 1573
dd57230ba8fe
parent 1570
e66fd840cb6b
child 1576
b1f619d38249
     1.1 --- a/src/share/vm/code/nmethod.cpp	Tue Jan 05 13:05:58 2010 +0100
     1.2 +++ b/src/share/vm/code/nmethod.cpp	Tue Jan 05 15:21:25 2010 +0100
     1.3 @@ -1724,9 +1724,9 @@
     1.4    if (!method()->is_native()) {
     1.5      SimpleScopeDesc ssd(this, fr.pc());
     1.6      Bytecode_invoke* call = Bytecode_invoke_at(ssd.method(), ssd.bci());
     1.7 -    bool is_static = call->is_invokestatic();
     1.8 +    bool has_receiver = call->has_receiver();
     1.9      symbolOop signature = call->signature();
    1.10 -    fr.oops_compiled_arguments_do(signature, is_static, reg_map, f);
    1.11 +    fr.oops_compiled_arguments_do(signature, has_receiver, reg_map, f);
    1.12    }
    1.13  }
    1.14  

mercurial