From e53798a7e3267305f696bf658e418c92e63e0834 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 1 Dec 2014 10:31:54 +0000 Subject: Inlining support in optimizing. Currently only inlines simple things that don't require an environment, such as: - Returning a constant. - Returning a parameter. - Returning an arithmetic operation. Change-Id: Ie844950cb44f69e104774a3cf7a8dea66bc85661 --- compiler/optimizing/graph_checker_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing/graph_checker_test.cc') diff --git a/compiler/optimizing/graph_checker_test.cc b/compiler/optimizing/graph_checker_test.cc index 39def82007..923468ff16 100644 --- a/compiler/optimizing/graph_checker_test.cc +++ b/compiler/optimizing/graph_checker_test.cc @@ -62,7 +62,7 @@ static void TestCodeSSA(const uint16_t* data) { ASSERT_NE(graph, nullptr); graph->BuildDominatorTree(); - graph->TransformToSSA(); + graph->TransformToSsa(); SSAChecker ssa_checker(&allocator, graph); ssa_checker.Run(); -- cgit v1.2.3-59-g8ed1b