summaryrefslogtreecommitdiff
path: root/compiler/optimizing/constant_propagation_test.cc
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2014-10-16 13:26:29 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-10-16 13:26:29 +0000
commitec2ea6ff6e3d7816df889454866a28b58ce6e6f5 (patch)
tree41ec0fcacce25807fbc28965fb5e93d6c176c55e /compiler/optimizing/constant_propagation_test.cc
parentc15c4066233b644f3086eef80007a7cf878d4867 (diff)
parent633021e6ff6b9a57a374a994e74cfd69275ce100 (diff)
Merge "Implement default traversals in CFG & SSA graph checkers."
Diffstat (limited to 'compiler/optimizing/constant_propagation_test.cc')
-rw-r--r--compiler/optimizing/constant_propagation_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/constant_propagation_test.cc b/compiler/optimizing/constant_propagation_test.cc
index 342777a49c..ff44805ed2 100644
--- a/compiler/optimizing/constant_propagation_test.cc
+++ b/compiler/optimizing/constant_propagation_test.cc
@@ -62,7 +62,7 @@ static void TestCode(const uint16_t* data,
ASSERT_EQ(expected_after_dce, actual_after_dce);
SSAChecker ssa_checker(&allocator, graph);
- ssa_checker.VisitInsertionOrder();
+ ssa_checker.Run();
ASSERT_TRUE(ssa_checker.IsValid());
}