commit | 0d3f578909d0d1ea072ca68d78301b6fb7a44451 | [log] [tgz] |
---|---|---|
author | Nicolas Geoffray <ngeoffray@google.com> | Wed May 14 09:43:38 2014 +0100 |
committer | Nicolas Geoffray <ngeoffray@google.com> | Fri May 16 09:07:31 2014 +0100 |
tree | 5a90ec26839afa06294a46e67a4c4481982c47bf | |
parent | c2ffcecb61e474f29f3c6a8721dfd00e0252b1f8 [diff] [blame] |
Linearize the graph before creating live ranges. Change-Id: I02eb5671e3304ab062286131745c1366448aff58
diff --git a/compiler/optimizing/liveness_test.cc b/compiler/optimizing/liveness_test.cc index d665ab9..53e7bbe 100644 --- a/compiler/optimizing/liveness_test.cc +++ b/compiler/optimizing/liveness_test.cc
@@ -35,6 +35,7 @@ ASSERT_NE(graph, nullptr); graph->BuildDominatorTree(); graph->TransformToSSA(); + graph->FindNaturalLoops(); SsaLivenessAnalysis liveness(*graph); liveness.Analyze();