Index: src/ia32/assembler-ia32.h |
diff --git a/src/ia32/assembler-ia32.h b/src/ia32/assembler-ia32.h |
index 466245dd558d4eb1b75f74b855c38073a3379da6..4b6a74be040936aadd6a576328c1eadbb0fc98f2 100644 |
--- a/src/ia32/assembler-ia32.h |
+++ b/src/ia32/assembler-ia32.h |
@@ -863,9 +863,7 @@ class Assembler : public AssemblerBase { |
void call(Register reg) { call(Operand(reg)); } |
void call(const Operand& adr); |
int CallSize(Handle<Code> code, RelocInfo::Mode mode); |
- void call(Handle<Code> code, |
- RelocInfo::Mode rmode, |
- TypeFeedbackId id = TypeFeedbackId::None()); |
+ void call(Handle<Code> code, RelocInfo::Mode rmode); |
// Jumps |
// unconditional jump to L |
@@ -1746,12 +1744,8 @@ class Assembler : public AssemblerBase { |
void GrowBuffer(); |
inline void emit(uint32_t x); |
inline void emit(Handle<Object> handle); |
- inline void emit(uint32_t x, |
- RelocInfo::Mode rmode, |
- TypeFeedbackId id = TypeFeedbackId::None()); |
- inline void emit(Handle<Code> code, |
- RelocInfo::Mode rmode, |
- TypeFeedbackId id = TypeFeedbackId::None()); |
+ inline void emit(uint32_t x, RelocInfo::Mode rmode); |
+ inline void emit(Handle<Code> code, RelocInfo::Mode rmode); |
inline void emit(const Immediate& x); |
inline void emit_b(Immediate x); |
inline void emit_w(const Immediate& x); |