| Index: src/compiler/instruction-selector.cc
|
| diff --git a/src/compiler/instruction-selector.cc b/src/compiler/instruction-selector.cc
|
| index 813da4f132e2e9fb411004ae22b88bb0cb6189cc..4981f6427aaa412efb9146020d900abdee088699 100644
|
| --- a/src/compiler/instruction-selector.cc
|
| +++ b/src/compiler/instruction-selector.cc
|
| @@ -345,6 +345,9 @@ void InstructionSelector::InitializeCallBuffer(Node* call, CallBuffer* buffer,
|
| g.UseLocation(callee, buffer->descriptor->GetInputLocation(0),
|
| buffer->descriptor->GetInputType(0)));
|
| break;
|
| + case CallDescriptor::kInterpreterDispatch:
|
| + buffer->instruction_args.push_back(g.UseRegister(callee));
|
| + break;
|
| }
|
| DCHECK_EQ(1u, buffer->instruction_args.size());
|
|
|
|
|