Index: src/arm/macro-assembler-arm.cc |
diff --git a/src/arm/macro-assembler-arm.cc b/src/arm/macro-assembler-arm.cc |
index 57fa3f580492a8aefb7363c777a6af61cd2f626f..89d6616509be4d781dbda324bb065c25bb594db2 100644 |
--- a/src/arm/macro-assembler-arm.cc |
+++ b/src/arm/macro-assembler-arm.cc |
@@ -1330,7 +1330,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); |
@@ -2613,9 +2613,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_const_pool_blocked()) { |