Index: src/mips/macro-assembler-mips.cc |
diff --git a/src/mips/macro-assembler-mips.cc b/src/mips/macro-assembler-mips.cc |
index 4e3ab3291be3fa3319b290762d01ba5eea3402b8..d67e58e660e8679a320957f9efdc522310632de4 100644 |
--- a/src/mips/macro-assembler-mips.cc |
+++ b/src/mips/macro-assembler-mips.cc |
@@ -3905,8 +3905,12 @@ void MacroAssembler::CallStub(CodeStub* stub, |
} |
-void MacroAssembler::TailCallStub(CodeStub* stub) { |
- Jump(stub->GetCode(isolate()), RelocInfo::CODE_TARGET); |
+void MacroAssembler::TailCallStub(CodeStub* stub, |
+ Condition cond, |
+ Register r1, |
+ const Operand& r2, |
+ BranchDelaySlot bd) { |
+ Jump(stub->GetCode(isolate()), RelocInfo::CODE_TARGET, cond, r1, r2, bd); |
} |