| Index: src/ia32/macro-assembler-ia32.h
|
| diff --git a/src/ia32/macro-assembler-ia32.h b/src/ia32/macro-assembler-ia32.h
|
| index 3560eaa737dfe61989281fa13a735d30214680f6..1d339bc58885270f0fe99f26e00e4c0d79e9e7df 100644
|
| --- a/src/ia32/macro-assembler-ia32.h
|
| +++ b/src/ia32/macro-assembler-ia32.h
|
| @@ -617,7 +617,7 @@ class MacroAssembler: public Assembler {
|
| // Runtime calls
|
|
|
| // Call a code stub. Generate the code if necessary.
|
| - void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
|
| + void CallStub(CodeStub* stub);
|
|
|
| // Tail call a code stub (jump). Generate the code if necessary.
|
| void TailCallStub(CodeStub* stub);
|
| @@ -702,10 +702,7 @@ class MacroAssembler: public Assembler {
|
| void Drop(int element_count);
|
|
|
| void Call(Label* target) { call(target); }
|
| - void Call(Handle<Code> target, RelocInfo::Mode rmode,
|
| - TypeFeedbackId id = TypeFeedbackId::None()) {
|
| - call(target, rmode, id);
|
| - }
|
| + void Call(Handle<Code> target, RelocInfo::Mode rmode) { call(target, rmode); }
|
| void Jump(Handle<Code> target, RelocInfo::Mode rmode) { jmp(target, rmode); }
|
| void Push(Register src) { push(src); }
|
| void Push(const Operand& src) { push(src); }
|
|
|