| Index: src/crankshaft/mips64/lithium-codegen-mips64.cc
|
| diff --git a/src/crankshaft/mips64/lithium-codegen-mips64.cc b/src/crankshaft/mips64/lithium-codegen-mips64.cc
|
| index b0fd0952ce7b125281d41b675b154589e1ccd1aa..7baada02f1aa2b8da05b5492450079ca8300f605 100644
|
| --- a/src/crankshaft/mips64/lithium-codegen-mips64.cc
|
| +++ b/src/crankshaft/mips64/lithium-codegen-mips64.cc
|
| @@ -3877,7 +3877,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());
|
| @@ -3891,14 +3890,12 @@ void LCodeGen::DoCallFunction(LCallFunction* instr) {
|
| __ li(vector_register, vector);
|
| __ li(slot_register, Operand(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 {
|
| __ li(a0, Operand(arity));
|
| - CallCode(isolate()->builtins()->Call(mode, tail_call_mode),
|
| - RelocInfo::CODE_TARGET, instr);
|
| + CallCode(isolate()->builtins()->Call(mode), RelocInfo::CODE_TARGET, instr);
|
| }
|
| }
|
|
|
|
|