| Index: src/mips64/macro-assembler-mips64.h
|
| diff --git a/src/mips64/macro-assembler-mips64.h b/src/mips64/macro-assembler-mips64.h
|
| index dc90a536a6404a0ca056c8d5558d9ca5d4fa969b..7be1642ac320875a134580f23f75cc79a6785902 100644
|
| --- a/src/mips64/macro-assembler-mips64.h
|
| +++ b/src/mips64/macro-assembler-mips64.h
|
| @@ -1268,19 +1268,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.
|
|
|