| Index: src/ppc/macro-assembler-ppc.cc
|
| diff --git a/src/ppc/macro-assembler-ppc.cc b/src/ppc/macro-assembler-ppc.cc
|
| index 9cd35ab01c397eef2ca56197f4cd52825c99e2b0..552d07c9221b6bd2295d842ea75d95e298d4cbe4 100644
|
| --- a/src/ppc/macro-assembler-ppc.cc
|
| +++ b/src/ppc/macro-assembler-ppc.cc
|
| @@ -1116,7 +1116,7 @@ void MacroAssembler::FloodFunctionIfStepping(Register fun, Register new_target,
|
| Push(new_target);
|
| }
|
| Push(fun, fun);
|
| - CallRuntime(Runtime::kDebugPrepareStepInIfStepping, 1);
|
| + CallRuntime(Runtime::kDebugPrepareStepInIfStepping);
|
| Pop(fun);
|
| if (new_target.is_valid()) {
|
| Pop(new_target);
|
| @@ -2441,9 +2441,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
|
| }
|
|
|