Index: src/x87/macro-assembler-x87.h |
diff --git a/src/x87/macro-assembler-x87.h b/src/x87/macro-assembler-x87.h |
index a99450d94c69783e906b72140d7e6ed3e90e172e..6bb63594a9720244791af31a55a6fd1ac29317f3 100644 |
--- a/src/x87/macro-assembler-x87.h |
+++ b/src/x87/macro-assembler-x87.h |
@@ -783,7 +783,10 @@ class MacroAssembler: public Assembler { |
void Drop(int element_count); |
void Call(Label* target) { call(target); } |
- void Call(Handle<Code> target, RelocInfo::Mode rmode) { call(target, rmode); } |
+ void Call(Handle<Code> target, RelocInfo::Mode rmode, |
+ TypeFeedbackId id = TypeFeedbackId::None()) { |
+ call(target, rmode, id); |
+ } |
void Jump(Handle<Code> target, RelocInfo::Mode rmode) { jmp(target, rmode); } |
void Push(Register src) { push(src); } |
void Push(const Operand& src) { push(src); } |