Index: src/crankshaft/x87/lithium-codegen-x87.cc |
diff --git a/src/crankshaft/x87/lithium-codegen-x87.cc b/src/crankshaft/x87/lithium-codegen-x87.cc |
index 3d81843abbedfd6c9b1cfe9fe754606f996b94d0..2ec16d172e28d1917cbfde16ce4538199f70000c 100644 |
--- a/src/crankshaft/x87/lithium-codegen-x87.cc |
+++ b/src/crankshaft/x87/lithium-codegen-x87.cc |
@@ -4007,7 +4007,6 @@ void LCodeGen::DoCallFunction(LCallFunction* instr) { |
int arity = instr->arity(); |
ConvertReceiverMode mode = hinstr->convert_mode(); |
- TailCallMode tail_call_mode = hinstr->tail_call_mode(); |
if (hinstr->HasVectorAndSlot()) { |
Register slot_register = ToRegister(instr->temp_slot()); |
Register vector_register = ToRegister(instr->temp_vector()); |
@@ -4021,14 +4020,12 @@ void LCodeGen::DoCallFunction(LCallFunction* instr) { |
__ mov(vector_register, vector); |
__ mov(slot_register, Immediate(Smi::FromInt(index))); |
- Handle<Code> ic = CodeFactory::CallICInOptimizedCode(isolate(), arity, mode, |
- tail_call_mode) |
- .code(); |
+ Handle<Code> ic = |
+ CodeFactory::CallICInOptimizedCode(isolate(), arity, mode).code(); |
CallCode(ic, RelocInfo::CODE_TARGET, instr); |
} else { |
__ Set(eax, arity); |
- CallCode(isolate()->builtins()->Call(mode, tail_call_mode), |
- RelocInfo::CODE_TARGET, instr); |
+ CallCode(isolate()->builtins()->Call(mode), RelocInfo::CODE_TARGET, instr); |
} |
} |