summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/graph_checker.h
diff options
context:
space:
mode:
authorCalin Juravle <calin@google.com>2015-04-16 15:53:22 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-16 15:53:23 +0000
commite7bee3b7d307508243f4a00b5cf8a8867fcaaff5 (patch)
treeb9d350a3d1432d7546e5feab77e25807d328300a /compiler/optimizing/graph_checker.h
parent59bb47675b1f1bafbcababadb4a6ba1c345fec1a (diff)
parenta4f8831d6533e4fe5aed18433099e1130d95a877 (diff)
downloadart-e7bee3b7d307508243f4a00b5cf8a8867fcaaff5.tar.gz
art-e7bee3b7d307508243f4a00b5cf8a8867fcaaff5.tar.bz2
art-e7bee3b7d307508243f4a00b5cf8a8867fcaaff5.zip
Merge "Remove duplicates phis created during SSA transformation"
Diffstat (limited to 'compiler/optimizing/graph_checker.h')
-rw-r--r--compiler/optimizing/graph_checker.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/graph_checker.h b/compiler/optimizing/graph_checker.h
index 4568a5ef9d..24fee373f9 100644
--- a/compiler/optimizing/graph_checker.h
+++ b/compiler/optimizing/graph_checker.h
@@ -85,6 +85,7 @@ class SSAChecker : public GraphChecker {
public:
typedef GraphChecker super_type;
+ // TODO: There's no need to pass a separate allocator as we could get it from the graph.
SSAChecker(ArenaAllocator* allocator, HGraph* graph)
: GraphChecker(allocator, graph, "art::SSAChecker: ") {}