diff options
| author | 2015-03-04 21:12:27 +0000 | |
|---|---|---|
| committer | 2015-03-04 21:12:27 +0000 | |
| commit | c670efd6ba9dbd1166bfd8c805bb6b2df7d4313a (patch) | |
| tree | d112f34d4926e9b6fc3adf9504303fdddb22b7d3 /compiler/driver/compiler_options.cc | |
| parent | 029113f1013e2ce9027ea241a68f93072ce1bfe9 (diff) | |
| parent | 7b2f09eb6b5c74ffc38bd70f0aa74b8f8112e394 (diff) | |
Merge "ART: Add debuggable compiler flag"
Diffstat (limited to 'compiler/driver/compiler_options.cc')
| -rw-r--r-- | compiler/driver/compiler_options.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/driver/compiler_options.cc b/compiler/driver/compiler_options.cc index 09ec9a2973..067e1bd7d6 100644 --- a/compiler/driver/compiler_options.cc +++ b/compiler/driver/compiler_options.cc @@ -30,6 +30,7 @@ CompilerOptions::CompilerOptions() generate_gdb_information_(false), include_patch_information_(kDefaultIncludePatchInformation), top_k_profile_threshold_(kDefaultTopKProfileThreshold), + debuggable_(false), include_debug_symbols_(kDefaultIncludeDebugSymbols), implicit_null_checks_(true), implicit_so_checks_(true), @@ -49,6 +50,7 @@ CompilerOptions::CompilerOptions(CompilerFilter compiler_filter, bool generate_gdb_information, bool include_patch_information, double top_k_profile_threshold, + bool debuggable, bool include_debug_symbols, bool implicit_null_checks, bool implicit_so_checks, @@ -67,6 +69,7 @@ CompilerOptions::CompilerOptions(CompilerFilter compiler_filter, generate_gdb_information_(generate_gdb_information), include_patch_information_(include_patch_information), top_k_profile_threshold_(top_k_profile_threshold), + debuggable_(debuggable), include_debug_symbols_(include_debug_symbols), implicit_null_checks_(implicit_null_checks), implicit_so_checks_(implicit_so_checks), |