summaryrefslogtreecommitdiff
path: root/compiler/optimizing/side_effects_analysis.h
diff options
context:
space:
mode:
author David Brazdil <dbrazdil@google.com> 2015-06-23 18:27:30 +0100
committer David Brazdil <dbrazdil@google.com> 2015-06-24 15:02:15 +0100
commit69ba7b7112c2277ac225615b37e6df74c055740d (patch)
tree3177340740abfabd80f055b17ab92fb6e740bd87 /compiler/optimizing/side_effects_analysis.h
parentb809daaffdd42dc01457ae06ae83f2d7ebdb5e65 (diff)
ART: Run GraphChecker after Builder and SsaBuilder
This patch refactors the way GraphChecker is invoked, utilizing the same scoping mechanism as pass timing and graph visualizer. Therefore, GraphChecker will now run not just after instances of HOptimization but after the builders and reg alloc, too. Change-Id: I8173b98b79afa95e1fcbf3ac9630a873d7f6c1d4
Diffstat (limited to 'compiler/optimizing/side_effects_analysis.h')
-rw-r--r--compiler/optimizing/side_effects_analysis.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/side_effects_analysis.h b/compiler/optimizing/side_effects_analysis.h
index 415d10cd9d..7d300adf5e 100644
--- a/compiler/optimizing/side_effects_analysis.h
+++ b/compiler/optimizing/side_effects_analysis.h
@@ -25,7 +25,7 @@ namespace art {
class SideEffectsAnalysis : public HOptimization {
public:
explicit SideEffectsAnalysis(HGraph* graph)
- : HOptimization(graph, true, kSideEffectsAnalysisPassName),
+ : HOptimization(graph, kSideEffectsAnalysisPassName),
graph_(graph),
block_effects_(graph->GetArena(), graph->GetBlocks().Size(), SideEffects::None()),
loop_effects_(graph->GetArena(), graph->GetBlocks().Size(), SideEffects::None()) {}