| Index: src/mips/macro-assembler-mips.h
|
| diff --git a/src/mips/macro-assembler-mips.h b/src/mips/macro-assembler-mips.h
|
| index 667de79e07753dbdbf114a6d0fed8c0894668de3..2a8bfcb36076ecea9f2017189aa01dc8d9e6e83a 100644
|
| --- a/src/mips/macro-assembler-mips.h
|
| +++ b/src/mips/macro-assembler-mips.h
|
| @@ -1221,19 +1221,19 @@ const Operand& rt = Operand(zero_reg), BranchDelaySlot bd = PROTECT
|
| void CallJSExitStub(CodeStub* stub);
|
|
|
| // Call a runtime routine.
|
| - void CallRuntime(const Runtime::Function* f,
|
| - int num_arguments,
|
| - SaveFPRegsMode save_doubles = kDontSaveFPRegs);
|
| + void CallRuntime(const Runtime::Function* f, int num_arguments,
|
| + SaveFPRegsMode save_doubles = kDontSaveFPRegs,
|
| + BranchDelaySlot bd = PROTECT);
|
| void CallRuntimeSaveDoubles(Runtime::FunctionId id) {
|
| const Runtime::Function* function = Runtime::FunctionForId(id);
|
| CallRuntime(function, function->nargs, kSaveFPRegs);
|
| }
|
|
|
| // Convenience function: Same as above, but takes the fid instead.
|
| - void CallRuntime(Runtime::FunctionId id,
|
| - int num_arguments,
|
| - SaveFPRegsMode save_doubles = kDontSaveFPRegs) {
|
| - CallRuntime(Runtime::FunctionForId(id), num_arguments, save_doubles);
|
| + void CallRuntime(Runtime::FunctionId id, int num_arguments,
|
| + SaveFPRegsMode save_doubles = kDontSaveFPRegs,
|
| + BranchDelaySlot bd = PROTECT) {
|
| + CallRuntime(Runtime::FunctionForId(id), num_arguments, save_doubles, bd);
|
| }
|
|
|
| // Convenience function: call an external reference.
|
|
|