| Index: src/mips/macro-assembler-mips.cc
|
| ===================================================================
|
| --- src/mips/macro-assembler-mips.cc (revision 3935)
|
| +++ src/mips/macro-assembler-mips.cc (working copy)
|
| @@ -826,14 +826,21 @@
|
| }
|
|
|
|
|
| -void MacroAssembler::TailCallRuntime(const ExternalReference& ext,
|
| +void MacroAssembler::TailCallExternalReference(const ExternalReference& ext,
|
| + int num_arguments,
|
| + int result_size) {
|
| + UNIMPLEMENTED_MIPS();
|
| +}
|
| +
|
| +
|
| +void MacroAssembler::TailCallRuntime(Runtime::FunctionId fid,
|
| int num_arguments,
|
| int result_size) {
|
| - UNIMPLEMENTED_MIPS();
|
| + TailCallExternalReference(ExternalReference(fid), num_arguments, result_size);
|
| }
|
|
|
|
|
| -void MacroAssembler::JumpToRuntime(const ExternalReference& builtin) {
|
| +void MacroAssembler::JumpToExternalReference(const ExternalReference& builtin) {
|
| UNIMPLEMENTED_MIPS();
|
| }
|
|
|
|
|