Index: src/arm64/macro-assembler-arm64.cc |
diff --git a/src/arm64/macro-assembler-arm64.cc b/src/arm64/macro-assembler-arm64.cc |
index fbf459db46c4b27308562dcbf75748748b3d2771..625077abec7e75d811b00d9ea6a70ffe11084d8f 100644 |
--- a/src/arm64/macro-assembler-arm64.cc |
+++ b/src/arm64/macro-assembler-arm64.cc |
@@ -2423,7 +2423,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); |
@@ -4409,9 +4409,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); |
} |
} else { |
// Load the string to pass to Printf. |