diff options
Diffstat (limited to 'compiler/driver/compiler_driver.h')
| -rw-r--r-- | compiler/driver/compiler_driver.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index fad67983dd..9903421338 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -28,6 +28,7 @@ #include "compiled_method.h" #include "compiler.h" #include "dex_file.h" +#include "driver/compiler_options.h" #include "instruction_set.h" #include "invoke_type.h" #include "method_reference.h" @@ -105,8 +106,7 @@ class CompilerDriver { InstructionSetFeatures instruction_set_features, bool image, DescriptorSet* image_classes, size_t thread_count, bool dump_stats, bool dump_passes, - CumulativeLogger* timer, - std::string profile_file = ""); + CumulativeLogger* timer, std::string profile_file = ""); ~CompilerDriver(); @@ -394,6 +394,10 @@ class CompilerDriver { return dump_passes_; } + bool DidIncludeDebugSymbols() const { + return compiler_options_->GetIncludeDebugSymbols(); + } + CumulativeLogger* GetTimingsLogger() const { return timings_logger_; } |