diff options
| author | 2014-01-20 10:55:16 -0800 | |
|---|---|---|
| committer | 2014-01-20 10:55:16 -0800 | |
| commit | 650be76eb3c38ff905ec1d9675d73e5cb9a82dac (patch) | |
| tree | ade5eadfb41026a5457c8832ca65dc37e90f7bd8 /compiler/driver/compiler_driver.cc | |
| parent | ed31badc6de501320f49bec679dcdf9214ac07cc (diff) | |
Revert "Implement cumulative timings for CompilerDriver."
This reverts commit df013175d1aa04641e5c6175f8c786e547d31654.
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 714dc4cb5e..5edc8b6771 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -341,7 +341,7 @@ CompilerDriver::CompilerDriver(VerifiedMethodsData* verified_methods_data, CompilerBackend compiler_backend, InstructionSet instruction_set, InstructionSetFeatures instruction_set_features, bool image, DescriptorSet* image_classes, size_t thread_count, - bool dump_stats, bool dump_passes, CumulativeLogger* timer) + bool dump_stats) : verified_methods_data_(verified_methods_data), method_inliner_map_(method_inliner_map), compiler_backend_(compiler_backend), @@ -356,8 +356,6 @@ CompilerDriver::CompilerDriver(VerifiedMethodsData* verified_methods_data, start_ns_(0), stats_(new AOTCompilationStats), dump_stats_(dump_stats), - dump_passes_(dump_passes), - timings_logger_(timer), compiler_library_(NULL), compiler_(NULL), compiler_context_(NULL), |