| Index: src/debug/mips/debug-mips.cc
|
| diff --git a/src/debug/mips/debug-mips.cc b/src/debug/mips/debug-mips.cc
|
| index c1d24c447effb8a81a52cacc877af255de8a089c..5a291aa086206a4e8b358cea20754836d78b39a6 100644
|
| --- a/src/debug/mips/debug-mips.cc
|
| +++ b/src/debug/mips/debug-mips.cc
|
| @@ -24,12 +24,11 @@ void EmitDebugBreakSlot(MacroAssembler* masm) {
|
| }
|
|
|
|
|
| -void DebugCodegen::GenerateSlot(MacroAssembler* masm, RelocInfo::Mode mode,
|
| - int call_argc) {
|
| +void DebugCodegen::GenerateSlot(MacroAssembler* masm, RelocInfo::Mode mode) {
|
| // Generate enough nop's to make space for a call instruction. Avoid emitting
|
| // the trampoline pool in the debug break slot code.
|
| Assembler::BlockTrampolinePoolScope block_pool(masm);
|
| - masm->RecordDebugBreakSlot(mode, call_argc);
|
| + masm->RecordDebugBreakSlot(mode);
|
| EmitDebugBreakSlot(masm);
|
| }
|
|
|
|
|