diff options
author | 2014-12-01 10:31:54 +0000 | |
---|---|---|
committer | 2014-12-15 22:52:27 +0000 | |
commit | e53798a7e3267305f696bf658e418c92e63e0834 (patch) | |
tree | 8979bbed96b107a5a6bbae9285ff4e0c362dad95 /compiler/optimizing/ssa_test.cc | |
parent | e6c0cdd11097dd72275ac24f1e98217c299d973e (diff) |
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
Diffstat (limited to 'compiler/optimizing/ssa_test.cc')
-rw-r--r-- | compiler/optimizing/ssa_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/ssa_test.cc b/compiler/optimizing/ssa_test.cc index 6174dd49a1..6b6bf05053 100644 --- a/compiler/optimizing/ssa_test.cc +++ b/compiler/optimizing/ssa_test.cc @@ -87,7 +87,7 @@ static void TestCode(const uint16_t* data, const char* expected) { // Suspend checks implementation may change in the future, and this test relies // on how instructions are ordered. RemoveSuspendChecks(graph); - graph->TransformToSSA(); + graph->TransformToSsa(); ReNumberInstructions(graph); // Test that phis had their type set. |