| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index e09f4a0e0a14f7d3bd51c40bde8db8e264bf46d8..eea3dae7fe58867424ef5a8d8a1f51b229100957 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -345,6 +345,10 @@ void InstructionSelector::InitializeCallBuffer(Node* call, CallBuffer* buffer,
|
| g.UseLocation(callee, buffer->descriptor->GetInputLocation(0),
|
| buffer->descriptor->GetInputType(0)));
|
| 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());
|
|
|
|
|