| Index: src/compiler/js-inlining.cc
|
| diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc
|
| index 655a4b0aa5c8f12bd98a4f5f6c78512f5ffdc7e5..7a18c714c9d40e35eaf9b7432b5ba317839627a9 100644
|
| --- a/src/compiler/js-inlining.cc
|
| +++ b/src/compiler/js-inlining.cc
|
| @@ -237,12 +237,12 @@ void Inlinee::InlineAtCall(JSGraph* jsgraph, Node* call) {
|
| void JSInliner::TryInlineCall(Node* node) {
|
| DCHECK_EQ(IrOpcode::kJSCallFunction, node->opcode());
|
|
|
| - ValueMatcher<Handle<JSFunction> > match(node->InputAt(0));
|
| + HeapObjectMatcher<JSFunction> match(node->InputAt(0));
|
| if (!match.HasValue()) {
|
| return;
|
| }
|
|
|
| - Handle<JSFunction> function = match.Value();
|
| + Handle<JSFunction> function = match.Value().handle();
|
|
|
| if (function->shared()->native()) {
|
| if (FLAG_trace_turbo_inlining) {
|
|
|