about summary refs log tree commit diff
path: root/compiler/rustc_driver_impl/src
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2023-05-01 09:56:39 +0000
committerCamille GILLOT <gillot.camille@gmail.com>2024-11-26 10:45:21 +0000
commit7fa021ad86fb62753576332a1a52b78acac492f9 (patch)
treec500c2ac92617eeaf8660d9d61e54ee328615a55 /compiler/rustc_driver_impl/src
parentf2abf827c128120ed7a874d02973947968c158b8 (diff)
downloadrust-7fa021ad86fb62753576332a1a52b78acac492f9.tar.gz
rust-7fa021ad86fb62753576332a1a52b78acac492f9.zip
Remove -Zfuel.
Diffstat (limited to 'compiler/rustc_driver_impl/src')
-rw-r--r--compiler/rustc_driver_impl/src/lib.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_driver_impl/src/lib.rs b/compiler/rustc_driver_impl/src/lib.rs
index c270ce16726..256266d2965 100644
--- a/compiler/rustc_driver_impl/src/lib.rs
+++ b/compiler/rustc_driver_impl/src/lib.rs
@@ -472,10 +472,6 @@ fn run_compiler(
             linker.link(sess, codegen_backend)?
         }
 
-        if let Some(fuel) = sess.opts.unstable_opts.print_fuel.as_deref() {
-            eprintln!("Fuel used by {}: {}", fuel, sess.print_fuel.load(Ordering::SeqCst));
-        }
-
         Ok(())
     })
 }