diff options
| author | 2015-01-20 12:28:09 +0000 | |
|---|---|---|
| committer | 2015-01-20 12:28:11 +0000 | |
| commit | e7fd3e3a8e7f10048b7ea558cc525331c97bbefa (patch) | |
| tree | a5d1a942460fe34c82f3dce7846d004b90ebd08d /compiler/optimizing/linearize_test.cc | |
| parent | 606a81aab3b9289d37d828375793020b93718c6a (diff) | |
| parent | cd6dffedf1bd8e6dfb3fb0c933551f9a90f7de3f (diff) | |
Merge "Add implicit null checks for the optimizing compiler"
Diffstat (limited to 'compiler/optimizing/linearize_test.cc')
| -rw-r--r-- | compiler/optimizing/linearize_test.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/linearize_test.cc b/compiler/optimizing/linearize_test.cc index 59404dcb14..2ab9b571ff 100644 --- a/compiler/optimizing/linearize_test.cc +++ b/compiler/optimizing/linearize_test.cc @@ -22,6 +22,7 @@ #include "code_generator_x86.h" #include "dex_file.h" #include "dex_instruction.h" +#include "driver/compiler_options.h" #include "graph_visualizer.h" #include "nodes.h" #include "optimizing_unit_test.h" @@ -44,7 +45,7 @@ static void TestCode(const uint16_t* data, const int* expected_order, size_t num graph->TryBuildingSsa(); - x86::CodeGeneratorX86 codegen(graph); + x86::CodeGeneratorX86 codegen(graph, CompilerOptions()); SsaLivenessAnalysis liveness(*graph, &codegen); liveness.Analyze(); |