| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index 655c7663879d8b157afce43e576d42193c366841..bd42c2818555e517ac569d4e7aab01e3fae63848 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -568,10 +568,6 @@ void InstructionSelector::InitializeCallBuffer(Node* call, CallBuffer* buffer,
|
| g.UseLocation(callee, buffer->descriptor->GetInputLocation(0),
|
| buffer->descriptor->GetInputType(0).representation()));
|
| break;
|
| - case CallDescriptor::kLazyBailout:
|
| - // The target is ignored, but we still need to pass a value here.
|
| - buffer->instruction_args.push_back(g.UseImmediate(callee));
|
| - break;
|
| }
|
| DCHECK_EQ(1u, buffer->instruction_args.size());
|
|
|
| @@ -1459,9 +1455,6 @@ void InstructionSelector::VisitCall(Node* node, BasicBlock* handler) {
|
| case CallDescriptor::kCallJSFunction:
|
| opcode = kArchCallJSFunction | MiscField::encode(flags);
|
| break;
|
| - case CallDescriptor::kLazyBailout:
|
| - opcode = kArchLazyBailout | MiscField::encode(flags);
|
| - break;
|
| }
|
|
|
| // Emit the call instruction.
|
|
|