| Index: src/compiler/js-native-context-specialization.cc
|
| diff --git a/src/compiler/js-native-context-specialization.cc b/src/compiler/js-native-context-specialization.cc
|
| index 35e657f442cb08ddb3feb33493cf608c67ab8768..a09e2f67591c9efdf7e5fcf35e71b11787f62639 100644
|
| --- a/src/compiler/js-native-context-specialization.cc
|
| +++ b/src/compiler/js-native-context-specialization.cc
|
| @@ -418,6 +418,7 @@ Reduction JSNativeContextSpecialization::ReduceNamedAccess(
|
| frame_state, exit_effect, exit_control);
|
| // TODO(bmeurer): This should be on the AdvancedReducer somehow.
|
| NodeProperties::MergeControlToEnd(graph(), common(), deoptimize);
|
| + Revisit(graph()->end());
|
|
|
| // Generate the final merge point for all (polymorphic) branches.
|
| int const control_count = static_cast<int>(controls.size());
|
| @@ -850,6 +851,7 @@ Reduction JSNativeContextSpecialization::ReduceElementAccess(
|
| frame_state, exit_effect, exit_control);
|
| // TODO(bmeurer): This should be on the AdvancedReducer somehow.
|
| NodeProperties::MergeControlToEnd(graph(), common(), deoptimize);
|
| + Revisit(graph()->end());
|
|
|
| // Generate the final merge point for all (polymorphic) branches.
|
| int const control_count = static_cast<int>(controls.size());
|
|
|