diff options
author | David Srbecky <dsrbecky@google.com> | 2015-04-13 20:00:53 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-13 20:00:54 +0000 |
commit | 4af290af4e89cfbc3a4e1ada79909ccee353361a (patch) | |
tree | 532d86c2bc0e3693876be225d56250295840db39 /compiler/driver/compiler_options.h | |
parent | daba9dff2ba0160332fe54ab14fc4283b8ea86fb (diff) | |
parent | 7f49e672bc943c49ca8af438ae4bd61b95fe364b (diff) |
Merge "Remove the --gen-gdb-info compiler option."
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_; |