Index: src/arm/macro-assembler-arm.cc |
=================================================================== |
--- src/arm/macro-assembler-arm.cc (revision 13245) |
+++ src/arm/macro-assembler-arm.cc (working copy) |
@@ -2186,9 +2186,11 @@ |
} |
-void MacroAssembler::CallStub(CodeStub* stub, Condition cond) { |
+void MacroAssembler::CallStub(CodeStub* stub, |
+ TypeFeedbackId ast_id, |
+ Condition cond) { |
ASSERT(AllowThisStubCall(stub)); // Stub calls are not allowed in some stubs. |
- Call(stub->GetCode(), RelocInfo::CODE_TARGET, TypeFeedbackId::None(), cond); |
+ Call(stub->GetCode(), RelocInfo::CODE_TARGET, ast_id, cond); |
} |