| Index: src/crankshaft/arm64/lithium-codegen-arm64.cc
|
| diff --git a/src/crankshaft/arm64/lithium-codegen-arm64.cc b/src/crankshaft/arm64/lithium-codegen-arm64.cc
|
| index 2edc75c873658ffc328c82c85ad5c1eb85cd2326..23cd736ee9f6c271cf33926e65553752c6e27ba8 100644
|
| --- a/src/crankshaft/arm64/lithium-codegen-arm64.cc
|
| +++ b/src/crankshaft/arm64/lithium-codegen-arm64.cc
|
| @@ -373,7 +373,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());
|
| @@ -387,14 +386,12 @@ void LCodeGen::DoCallFunction(LCallFunction* instr) {
|
| __ Mov(vector_register, vector);
|
| __ Mov(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 {
|
| __ Mov(x0, arity);
|
| - CallCode(isolate()->builtins()->Call(mode, tail_call_mode),
|
| - RelocInfo::CODE_TARGET, instr);
|
| + CallCode(isolate()->builtins()->Call(mode), RelocInfo::CODE_TARGET, instr);
|
| }
|
| RecordPushedArgumentsDelta(hinstr->argument_delta());
|
| }
|
|
|