diff options
Diffstat (limited to 'src/compiler/driver/compiler_driver.h')
-rw-r--r-- | src/compiler/driver/compiler_driver.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/compiler/driver/compiler_driver.h b/src/compiler/driver/compiler_driver.h index a20e5ef585..7c37c6a083 100644 --- a/src/compiler/driver/compiler_driver.h +++ b/src/compiler/driver/compiler_driver.h @@ -67,7 +67,7 @@ class CompilerDriver { // can assume will be in the image, with NULL implying all available // classes. explicit CompilerDriver(CompilerBackend compiler_backend, InstructionSet instruction_set, bool image, - size_t thread_count, bool support_debugging, bool light_mode, + size_t thread_count, bool support_debugging, const std::set<std::string>* image_classes, bool dump_stats, bool dump_timings); @@ -84,10 +84,6 @@ class CompilerDriver { return support_debugging_; } - bool IsLightMode() const { - return light_mode_; - } - InstructionSet GetInstructionSet() const { return instruction_set_; } @@ -331,7 +327,6 @@ class CompilerDriver { bool image_; size_t thread_count_; bool support_debugging_; - const bool light_mode_; uint64_t start_ns_; UniquePtr<AOTCompilationStats> stats_; |