Commit 154f2635 authored by akos.palfi's avatar akos.palfi Committed by Commit bot

MIPS: Fix after 'MIPS: split api call stubs into accessor and function call stubs'.

Port 6950ead0

This commit fixes the remaining test failures after: ec52f8df

BUG=

Review URL: https://codereview.chromium.org/855183003

Cr-Commit-Position: refs/heads/master@{#26118}
parent dc388835
......@@ -4940,7 +4940,8 @@ static void CallApiFunctionStubHelper(MacroAssembler* masm,
}
MemOperand return_value_operand(fp, return_value_offset * kPointerSize);
int stack_space = 0;
MemOperand is_construct_call_operand = MemOperand(sp, 4 * kPointerSize);
MemOperand is_construct_call_operand =
MemOperand(sp, 4 * kPointerSize + kCArgsSlotsSize);
MemOperand* stack_space_operand = &is_construct_call_operand;
if (argc.is_immediate()) {
stack_space = argc.immediate() + FCA::kArgsLength + 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment