| Index: src/compiler/escape-analysis-reducer.cc
|
| diff --git a/src/compiler/escape-analysis-reducer.cc b/src/compiler/escape-analysis-reducer.cc
|
| index 313b6396dd3d6f9cf5b91c5ac87d7c55466a723c..195fca7b92844f19628f2157835debea2e2aaead 100644
|
| --- a/src/compiler/escape-analysis-reducer.cc
|
| +++ b/src/compiler/escape-analysis-reducer.cc
|
| @@ -210,7 +210,6 @@ Reduction EscapeAnalysisReducer::ReduceObjectIsSmi(Node* node) {
|
| return NoChange();
|
| }
|
|
|
| -
|
| Reduction EscapeAnalysisReducer::ReduceFrameStateUses(Node* node) {
|
| DCHECK_GE(node->op()->EffectInputCount(), 1);
|
| if (node->id() < static_cast<NodeId>(fully_reduced_.length())) {
|
| @@ -354,6 +353,9 @@ class EscapeAnalysisVerifier final : public AdvancedReducer {
|
| };
|
|
|
| void EscapeAnalysisReducer::VerifyReplacement() const {
|
| + if (FLAG_turbo_escape_stats) {
|
| + EscapeAnalysis::PrintStats();
|
| + }
|
| #ifdef DEBUG
|
| GraphReducer graph_reducer(zone(), jsgraph()->graph());
|
| EscapeAnalysisVerifier verifier(&graph_reducer, escape_analysis());
|
|
|