From acc56ac6a33a23abbf4a9a62528e352ea28c5407 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Tue, 9 Oct 2018 08:45:24 +0100 Subject: Introduce a 'baseline' variant for the compiler. Implemented as a stripped down version of the optimizing compiler, not running any optimization. Adjust code to still work with expectations in code generators. bug: 111397239 Test: test.py --baseline Change-Id: I4328283825f9a890616e7496ed4c1e77d6bcc5dd --- compiler/driver/compiler_options.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'compiler/driver/compiler_options.cc') diff --git a/compiler/driver/compiler_options.cc b/compiler/driver/compiler_options.cc index 8cc6cf10f0..3ab9afc5d6 100644 --- a/compiler/driver/compiler_options.cc +++ b/compiler/driver/compiler_options.cc @@ -47,6 +47,7 @@ CompilerOptions::CompilerOptions() boot_image_(false), core_image_(false), app_image_(false), + baseline_(false), debuggable_(false), generate_debug_info_(kDefaultGenerateDebugInfo), generate_mini_debug_info_(kDefaultGenerateMiniDebugInfo), -- cgit v1.2.3-59-g8ed1b