about summary refs log tree commit diff
path: root/compiler/rustc_driver_impl/src
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2023-03-21 18:41:45 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2023-03-21 18:41:45 +0100
commit6c57dda44d2c9c12fdaab359c28767e4ccdb671b (patch)
treea18c90ef4830c6ab29354245c39f8851d1c64f62 /compiler/rustc_driver_impl/src
parentf60d2eb6c19751154a2c752d1c916420c0bb60e6 (diff)
downloadrust-6c57dda44d2c9c12fdaab359c28767e4ccdb671b.tar.gz
rust-6c57dda44d2c9c12fdaab359c28767e4ccdb671b.zip
Remove `unique` and move `VerboseTimingGuard` fields into a new struct
Diffstat (limited to 'compiler/rustc_driver_impl/src')
-rw-r--r--compiler/rustc_driver_impl/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_driver_impl/src/lib.rs b/compiler/rustc_driver_impl/src/lib.rs
index d44bd7fdb18..ad2c2b13fed 100644
--- a/compiler/rustc_driver_impl/src/lib.rs
+++ b/compiler/rustc_driver_impl/src/lib.rs
@@ -1359,7 +1359,7 @@ pub fn main() -> ! {
 
     if let Some(format) = callbacks.time_passes {
         let end_rss = get_resident_set_size();
-        print_time_passes_entry("total", start_time.elapsed(), start_rss, end_rss, format, true);
+        print_time_passes_entry("total", start_time.elapsed(), start_rss, end_rss, format);
     }
 
     process::exit(exit_code)