Index: src/mips/macro-assembler-mips.cc |
diff --git a/src/mips/macro-assembler-mips.cc b/src/mips/macro-assembler-mips.cc |
index 3c866ac45388ef13eb15581c17e262b1eede16de..892b757b305a92e32b7f67082b3e7f0e7ea202ce 100644 |
--- a/src/mips/macro-assembler-mips.cc |
+++ b/src/mips/macro-assembler-mips.cc |
@@ -4059,7 +4059,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); |
@@ -4687,9 +4687,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()) { |