Index: src/mips/macro-assembler-mips.cc |
diff --git a/src/mips/macro-assembler-mips.cc b/src/mips/macro-assembler-mips.cc |
index 9249917c3fd0e00895ef9eef6060079236c7bfe3..395342a2f0164e5b92dee55286c7ba2bb2b51209 100644 |
--- a/src/mips/macro-assembler-mips.cc |
+++ b/src/mips/macro-assembler-mips.cc |
@@ -3935,12 +3935,13 @@ void MacroAssembler::GetObjectType(Register object, |
// Runtime calls. |
void MacroAssembler::CallStub(CodeStub* stub, |
+ TypeFeedbackId ast_id, |
Condition cond, |
Register r1, |
const Operand& r2, |
BranchDelaySlot bd) { |
ASSERT(AllowThisStubCall(stub)); // Stub calls are not allowed in some stubs. |
- Call(stub->GetCode(), RelocInfo::CODE_TARGET, TypeFeedbackId::None(), |
+ Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, |
cond, r1, r2, bd); |
} |
@@ -4266,7 +4267,7 @@ void MacroAssembler::CallExternalReference(const ExternalReference& ext, |
PrepareCEntryFunction(ext); |
CEntryStub stub(1); |
- CallStub(&stub, al, zero_reg, Operand(zero_reg), bd); |
+ CallStub(&stub, TypeFeedbackId::None(), al, zero_reg, Operand(zero_reg), bd); |
} |