summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_options.h
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2016-01-25 17:31:49 +0000
committer David Srbecky <dsrbecky@google.com> 2016-01-25 17:31:49 +0000
commit8546cc9aeb05e866e1fb6a9e4130d53ea330baa8 (patch)
tree580a02752d8e447f6dce7cce01386c7e2a9a87f4 /compiler/driver/compiler_options.h
parent5fdcc3c931b70204fd8c491afa66f57f8428490f (diff)
Revert "Add option to generate compressed backtrace info."
This reverts commit 5fdcc3c931b70204fd8c491afa66f57f8428490f. Change-Id: I9c1f5aad6933a46af6717e3a90a51f76111f9c8a
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r--compiler/driver/compiler_options.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h
index 5294af8b2c..d47fc2ad4b 100644
--- a/compiler/driver/compiler_options.h
+++ b/compiler/driver/compiler_options.h
@@ -51,7 +51,6 @@ class CompilerOptions FINAL {
static constexpr double kDefaultTopKProfileThreshold = 90.0;
static const bool kDefaultNativeDebuggable = false;
static const bool kDefaultGenerateDebugInfo = false;
- static const bool kDefaultGenerateMiniDebugInfo = false;
static const bool kDefaultIncludePatchInformation = false;
static const size_t kDefaultInlineDepthLimit = 3;
static const size_t kDefaultInlineMaxCodeUnits = 32;
@@ -171,20 +170,10 @@ class CompilerOptions FINAL {
return native_debuggable_;
}
- // This flag controls whether the compiler collects debugging information.
- // The other flags control how the information is written to disk.
- bool GenerateAnyDebugInfo() const {
- return GetGenerateDebugInfo() || GetGenerateMiniDebugInfo();
- }
-
bool GetGenerateDebugInfo() const {
return generate_debug_info_;
}
- bool GetGenerateMiniDebugInfo() const {
- return generate_mini_debug_info_;
- }
-
bool GetImplicitNullChecks() const {
return implicit_null_checks_;
}
@@ -277,7 +266,6 @@ class CompilerOptions FINAL {
bool debuggable_;
bool native_debuggable_;
bool generate_debug_info_;
- bool generate_mini_debug_info_;
bool implicit_null_checks_;
bool implicit_so_checks_;
bool implicit_suspend_checks_;