| Index: src/mips64/macro-assembler-mips64.cc | 
| diff --git a/src/mips64/macro-assembler-mips64.cc b/src/mips64/macro-assembler-mips64.cc | 
| index 7b73ac74e4d350827dc3153d1083995dcba1d9dd..e60ba6a7c92a4f0a270de5de9b38828029803cfd 100644 | 
| --- a/src/mips64/macro-assembler-mips64.cc | 
| +++ b/src/mips64/macro-assembler-mips64.cc | 
| @@ -4479,7 +4479,7 @@ void MacroAssembler::FloodFunctionIfStepping(Register fun, Register new_target, | 
| } | 
| Push(fun); | 
| Push(fun); | 
| -    CallRuntime(Runtime::kDebugPrepareStepInIfStepping, 1); | 
| +    CallRuntime(Runtime::kDebugPrepareStepInIfStepping); | 
| Pop(fun); | 
| if (new_target.is_valid()) { | 
| Pop(new_target); | 
| @@ -5338,9 +5338,9 @@ void MacroAssembler::Abort(BailoutReason reason) { | 
| // We don't actually want to generate a pile of code for this, so just | 
| // claim there is a stack frame, without generating one. | 
| FrameScope scope(this, StackFrame::NONE); | 
| -    CallRuntime(Runtime::kAbort, 1); | 
| +    CallRuntime(Runtime::kAbort); | 
| } else { | 
| -    CallRuntime(Runtime::kAbort, 1); | 
| +    CallRuntime(Runtime::kAbort); | 
| } | 
| // Will not return here. | 
| if (is_trampoline_pool_blocked()) { | 
|  |