| Index: src/mips64/code-stubs-mips64.cc
|
| diff --git a/src/mips64/code-stubs-mips64.cc b/src/mips64/code-stubs-mips64.cc
|
| index 454d6fb4d57c0819eb7246313e9751cc5cc0e8c6..78af39c67b5bdee68709371716507390ce3941b5 100644
|
| --- a/src/mips64/code-stubs-mips64.cc
|
| +++ b/src/mips64/code-stubs-mips64.cc
|
| @@ -3003,8 +3003,8 @@ void CallICStub::Generate(MacroAssembler* masm) {
|
|
|
|
|
| void CallICStub::GenerateMiss(MacroAssembler* masm) {
|
| - // Get the receiver of the function from the stack; 1 ~ return address.
|
| - __ ld(a4, MemOperand(sp, (arg_count() + 1) * kPointerSize));
|
| + // Get the receiver of the function from the stack.
|
| + __ ld(a4, MemOperand(sp, arg_count() * kPointerSize));
|
|
|
| {
|
| FrameScope scope(masm, StackFrame::INTERNAL);
|
|
|