| Index: src/compiler/js-inlining.cc
|
| diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc
|
| index a4f3e1d03e345f5db294577e2931666cce89edc9..f7457e706d6874c49f3c7520b9bde05a6318402b 100644
|
| --- a/src/compiler/js-inlining.cc
|
| +++ b/src/compiler/js-inlining.cc
|
| @@ -243,9 +243,8 @@ Reduction JSInliner::Reduce(Node* node) {
|
| HeapObjectMatcher match(call.jsfunction());
|
| if (!match.HasValue()) return NoChange();
|
|
|
| - if (!match.Value().handle()->IsJSFunction()) return NoChange();
|
| - Handle<JSFunction> function =
|
| - Handle<JSFunction>::cast(match.Value().handle());
|
| + if (!match.Value()->IsJSFunction()) return NoChange();
|
| + Handle<JSFunction> function = Handle<JSFunction>::cast(match.Value());
|
| if (mode_ == kRestrictedInlining && !function->shared()->force_inline()) {
|
| return NoChange();
|
| }
|
|
|