about summary refs log tree commit diff
path: root/compiler/rustc_interface/src/passes.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-12-04 18:23:42 +0100
committerGitHub <noreply@github.com>2024-12-04 18:23:42 +0100
commita4dc9634a8a7d25fc2ed3b0a5724d19b6e0697ca (patch)
treec75ce5f63c0397e4da4ba1316a41ea1e651ff6e2 /compiler/rustc_interface/src/passes.rs
parente6d7ab2c3cd4646731e7e4d24f90da4062ae9ef5 (diff)
parente52f5bf16dea36f302ad33af92518dcc8083012f (diff)
downloadrust-a4dc9634a8a7d25fc2ed3b0a5724d19b6e0697ca.tar.gz
rust-a4dc9634a8a7d25fc2ed3b0a5724d19b6e0697ca.zip
Rollup merge of #133847 - nnethercote:rm-Z-show-span, r=compiler-errors
Remove `-Zshow-span`.

It's very old (added in #12087). It's strange, and it's not clear what its use cases are. It only works with the crate root file because it runs before expansion. I suspect it won't be missed.

r? `@estebank`
Diffstat (limited to 'compiler/rustc_interface/src/passes.rs')
-rw-r--r--compiler/rustc_interface/src/passes.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_interface/src/passes.rs b/compiler/rustc_interface/src/passes.rs
index 06e27ed8060..d42915f4110 100644
--- a/compiler/rustc_interface/src/passes.rs
+++ b/compiler/rustc_interface/src/passes.rs
@@ -54,10 +54,6 @@ pub(crate) fn parse<'a>(sess: &'a Session) -> Result<ast::Crate> {
         })
         .map_err(|parse_error| parse_error.emit())?;
 
-    if let Some(ref s) = sess.opts.unstable_opts.show_span {
-        rustc_ast_passes::show_span::run(sess.dcx(), s, &krate);
-    }
-
     if sess.opts.unstable_opts.input_stats {
         input_stats::print_ast_stats(&krate, "PRE EXPANSION AST STATS", "ast-stats-1");
     }