diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-10-01 10:32:19 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2015-10-01 10:42:36 +0100 |
commit | 409e80901468f6c746eeae5c6e93ceedf1d8c711 (patch) | |
tree | 5b91b35e0c28299f96136a9f714f3f8b767cfa85 /compiler/common_compiler_test.h | |
parent | dc2ce636d6a98118a5998b93da161ef7840ec645 (diff) |
Don't force the boot image to using quick.
Instead, put the debuggable flag.
Also, remove obsolete ART_USE_OPTIMIZING_COMPILER environment
variable.
Change-Id: Idde00da0d063aa461faa0308134f3b420de9fe0a
Diffstat (limited to 'compiler/common_compiler_test.h')
-rw-r--r-- | compiler/common_compiler_test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/common_compiler_test.h b/compiler/common_compiler_test.h index dc2bc5c3f4..67b4428324 100644 --- a/compiler/common_compiler_test.h +++ b/compiler/common_compiler_test.h @@ -92,7 +92,7 @@ class CommonCompilerTest : public CommonRuntimeTest { void UnreserveImageSpace(); - Compiler::Kind compiler_kind_ = kUseOptimizingCompiler ? Compiler::kOptimizing : Compiler::kQuick; + Compiler::Kind compiler_kind_ = Compiler::kOptimizing; std::unique_ptr<CompilerOptions> compiler_options_; std::unique_ptr<VerificationResults> verification_results_; std::unique_ptr<DexFileToMethodInlinerMap> method_inliner_map_; |