summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/ssa_test.cc
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2014-09-15 15:33:30 +0000
committerNicolas Geoffray <ngeoffray@google.com>2014-09-16 16:18:12 +0100
commitfbc695f9b8e2084697e19c1355ab925f99f0d235 (patch)
tree03e643aa9b468a512873293528bec93438580bab /compiler/optimizing/ssa_test.cc
parent3d2d7fb7ad24f4aec681ddc68a9565fa837b97ef (diff)
downloadart-fbc695f9b8e2084697e19c1355ab925f99f0d235.zip
art-fbc695f9b8e2084697e19c1355ab925f99f0d235.tar.gz
art-fbc695f9b8e2084697e19c1355ab925f99f0d235.tar.bz2
Revert "Revert "Implement suspend checks in new compiler.""
This reverts commit 7e3652c45c30c1f2f840e6088e24e2db716eaea7. Change-Id: Ib489440c34e41cba9e9e297054f9274f6e81a2d8
Diffstat (limited to 'compiler/optimizing/ssa_test.cc')
-rw-r--r--compiler/optimizing/ssa_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/optimizing/ssa_test.cc b/compiler/optimizing/ssa_test.cc
index 088a5c4..99fd9eb 100644
--- a/compiler/optimizing/ssa_test.cc
+++ b/compiler/optimizing/ssa_test.cc
@@ -83,6 +83,9 @@ static void TestCode(const uint16_t* data, const char* expected) {
HGraph* graph = builder.BuildGraph(*item);
ASSERT_NE(graph, nullptr);
+ // Suspend checks implementation may change in the future, and this test relies
+ // on how instructions are ordered.
+ RemoveSuspendChecks(graph);
graph->BuildDominatorTree();
graph->TransformToSSA();
ReNumberInstructions(graph);