diff options
| author | 2015-06-24 14:11:45 +0000 | |
|---|---|---|
| committer | 2015-06-24 14:11:46 +0000 | |
| commit | 22c4edd865bfdea29e80a789cef70e8e51d2a3a5 (patch) | |
| tree | 310873c7bf2eee705d46bcdcb0022015969c4ae3 /compiler/optimizing/gvn.h | |
| parent | 2b1bc487d3fa84e4bac16e85112e5e45682ac0ba (diff) | |
| parent | 69ba7b7112c2277ac225615b37e6df74c055740d (diff) | |
Merge "ART: Run GraphChecker after Builder and SsaBuilder"
Diffstat (limited to 'compiler/optimizing/gvn.h')
| -rw-r--r-- | compiler/optimizing/gvn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/gvn.h b/compiler/optimizing/gvn.h index e74d969f11..14a503b910 100644 --- a/compiler/optimizing/gvn.h +++ b/compiler/optimizing/gvn.h @@ -27,7 +27,7 @@ class SideEffectsAnalysis; class GVNOptimization : public HOptimization { public: GVNOptimization(HGraph* graph, const SideEffectsAnalysis& side_effects) - : HOptimization(graph, true, kGlobalValueNumberingPassName), side_effects_(side_effects) {} + : HOptimization(graph, kGlobalValueNumberingPassName), side_effects_(side_effects) {} void Run() OVERRIDE; |