diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-04 18:23:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-04 18:23:42 +0100 |
| commit | a4dc9634a8a7d25fc2ed3b0a5724d19b6e0697ca (patch) | |
| tree | c75ce5f63c0397e4da4ba1316a41ea1e651ff6e2 /compiler/rustc_session/src | |
| parent | e6d7ab2c3cd4646731e7e4d24f90da4062ae9ef5 (diff) | |
| parent | e52f5bf16dea36f302ad33af92518dcc8083012f (diff) | |
| download | rust-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_session/src')
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index 9e95e278325..2c0302bbb2b 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -2038,8 +2038,6 @@ written to standard error output)"), "make the current crate share its generic instantiations"), shell_argfiles: bool = (false, parse_bool, [UNTRACKED], "allow argument files to be specified with POSIX \"shell-style\" argument quoting"), - show_span: Option<String> = (None, parse_opt_string, [TRACKED], - "show spans in the crate root file, for compiler debugging (expr|pat|ty)"), simulate_remapped_rust_src_base: Option<PathBuf> = (None, parse_opt_pathbuf, [TRACKED], "simulate the effect of remap-debuginfo = true at bootstrapping by remapping path \ to rust's source base directory. only meant for testing purposes"), |
