diff options
author | Andreas Gampe <agampe@google.com> | 2015-03-04 21:12:27 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-03-04 21:12:27 +0000 |
commit | c670efd6ba9dbd1166bfd8c805bb6b2df7d4313a (patch) | |
tree | d112f34d4926e9b6fc3adf9504303fdddb22b7d3 /compiler/driver/compiler_options.h | |
parent | 029113f1013e2ce9027ea241a68f93072ce1bfe9 (diff) | |
parent | 7b2f09eb6b5c74ffc38bd70f0aa74b8f8112e394 (diff) |
Merge "ART: Add debuggable compiler flag"
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index 0683d185e6..fecc600d64 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -62,6 +62,7 @@ class CompilerOptions FINAL { 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, @@ -128,6 +129,10 @@ class CompilerOptions FINAL { return top_k_profile_threshold_; } + bool GetDebuggable() const { + return debuggable_; + } + bool GetIncludeDebugSymbols() const { return include_debug_symbols_; } @@ -189,6 +194,7 @@ class CompilerOptions FINAL { const bool include_patch_information_; // When using a profile file only the top K% of the profiled samples will be compiled. const double top_k_profile_threshold_; + const bool debuggable_; const bool include_debug_symbols_; const bool implicit_null_checks_; const bool implicit_so_checks_; |