| Index: src/compiler/js-inlining.cc
|
| diff --git a/src/compiler/js-inlining.cc b/src/compiler/js-inlining.cc
|
| index 7a18c714c9d40e35eaf9b7432b5ba317839627a9..9dd66f3ef13f33b27b3ba112c3834ccb1fb99cd1 100644
|
| --- a/src/compiler/js-inlining.cc
|
| +++ b/src/compiler/js-inlining.cc
|
| @@ -120,8 +120,9 @@ void Inlinee::UnifyReturn() {
|
|
|
| int predecessors =
|
| OperatorProperties::GetControlInputCount(final_merge->op());
|
| - Operator* op_phi = jsgraph_->common()->Phi(kMachAnyTagged, predecessors);
|
| - Operator* op_ephi = jsgraph_->common()->EffectPhi(predecessors);
|
| + const Operator* op_phi =
|
| + jsgraph_->common()->Phi(kMachAnyTagged, predecessors);
|
| + const Operator* op_ephi = jsgraph_->common()->EffectPhi(predecessors);
|
|
|
| NodeVector values(jsgraph_->zone());
|
| NodeVector effects(jsgraph_->zone());
|
|
|