diff options
| author | 2013-07-21 18:21:55 -0700 | |
|---|---|---|
| committer | 2013-07-21 18:21:55 -0700 | |
| commit | 49ed57499b918553e2d3db922ca2826dffa5bcd1 (patch) | |
| tree | b6937ca5476d0507aae69569be8d247aa4e6399c /compiler/driver/compiler_driver.h | |
| parent | 2b1de652896040e3049814da91c835b2b500af55 (diff) | |
| parent | 75b13a9cb4df1dee19c459341df1697e196f20f7 (diff) | |
am 75b13a9c: Merge "Remove CompilerDriver::IsDebuggingSupported"
* commit '75b13a9cb4df1dee19c459341df1697e196f20f7':
Remove CompilerDriver::IsDebuggingSupported
Diffstat (limited to 'compiler/driver/compiler_driver.h')
| -rw-r--r-- | compiler/driver/compiler_driver.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 80cc89b95f..902fda7f0c 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -72,8 +72,7 @@ class CompilerDriver { // classes. explicit CompilerDriver(CompilerBackend compiler_backend, InstructionSet instruction_set, bool image, DescriptorSet* image_classes, - size_t thread_count, bool support_debugging, - bool dump_stats, bool dump_timings); + size_t thread_count, bool dump_stats, bool dump_timings); ~CompilerDriver(); @@ -84,10 +83,6 @@ class CompilerDriver { void CompileOne(const mirror::AbstractMethod* method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - bool IsDebuggingSupported() { - return support_debugging_; - } - InstructionSet GetInstructionSet() const { return instruction_set_; } @@ -362,7 +357,6 @@ class CompilerDriver { UniquePtr<DescriptorSet> image_classes_; size_t thread_count_; - bool support_debugging_; uint64_t start_ns_; UniquePtr<AOTCompilationStats> stats_; |