diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2018-10-09 08:45:24 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2018-10-10 11:10:08 +0100 |
commit | acc56ac6a33a23abbf4a9a62528e352ea28c5407 (patch) | |
tree | e1dd4569fd5b49879ec8dfd1b5ef5204a1084407 /compiler/driver/compiler_options.cc | |
parent | 4ca6cc7ddcbd568b365c428371ea9675799775af (diff) |
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
Diffstat (limited to 'compiler/driver/compiler_options.cc')
-rw-r--r-- | compiler/driver/compiler_options.cc | 1 |
1 files changed, 1 insertions, 0 deletions
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), |