diff options
author | David Srbecky <dsrbecky@google.com> | 2015-04-12 09:52:31 +0100 |
---|---|---|
committer | David Srbecky <dsrbecky@google.com> | 2015-04-12 09:52:31 +0100 |
commit | 7f49e672bc943c49ca8af438ae4bd61b95fe364b (patch) | |
tree | 3fcb3820c5046ea30e78c8264327536041b5cdad /compiler/driver/compiler_options.h | |
parent | 58565098b2298041ccc97371a3cc486df88d51b3 (diff) | |
download | android_art-7f49e672bc943c49ca8af438ae4bd61b95fe364b.tar.gz android_art-7f49e672bc943c49ca8af438ae4bd61b95fe364b.tar.bz2 android_art-7f49e672bc943c49ca8af438ae4bd61b95fe364b.zip |
Remove the --gen-gdb-info compiler option.
It is never used. We generally use --include-debug-symbols instead.
Change-Id: I933495cd85ab4f7dfcf3ef3cd2d943d4b870ffeb
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index f7ea385e19..aa0db5d87b 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -61,7 +61,6 @@ class CompilerOptions FINAL { size_t small_method_threshold, size_t tiny_method_threshold, size_t num_dex_methods_threshold, - bool generate_gdb_information, bool include_patch_information, double top_k_profile_threshold, bool debuggable, @@ -162,10 +161,6 @@ class CompilerOptions FINAL { return implicit_suspend_checks_; } - bool GetGenerateGDBInformation() const { - return generate_gdb_information_; - } - bool GetIncludePatchInformation() const { return include_patch_information_; } @@ -207,7 +202,6 @@ class CompilerOptions FINAL { const size_t small_method_threshold_; const size_t tiny_method_threshold_; const size_t num_dex_methods_threshold_; - const bool generate_gdb_information_; 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_; |