Index: src/hydrogen.cc |
diff --git a/src/hydrogen.cc b/src/hydrogen.cc |
index 478d938cf6fa27d74994d43674af59ca7f05ef41..3f64183bb028730105f8bb9873c5571d8e6e66bf 100644 |
--- a/src/hydrogen.cc |
+++ b/src/hydrogen.cc |
@@ -55,6 +55,7 @@ |
#include "hydrogen-removable-simulates.h" |
#include "hydrogen-representation-changes.h" |
#include "hydrogen-sce.h" |
+#include "hydrogen-store-elimination.h" |
#include "hydrogen-uint32-analysis.h" |
#include "lithium-allocator.h" |
#include "parser.h" |
@@ -3998,6 +3999,8 @@ bool HGraph::Optimize(BailoutReason* bailout_reason) { |
if (FLAG_check_elimination) Run<HCheckEliminationPhase>(); |
+ if (FLAG_store_elimination) Run<HStoreEliminationPhase>(); |
+ |
if (FLAG_use_range) Run<HRangeAnalysisPhase>(); |
Run<HComputeChangeUndefinedToNaN>(); |