about summary refs log tree commit diff
path: root/compiler/rustc_session
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-02-16 10:35:44 +0000
committerbors <bors@rust-lang.org>2023-02-16 10:35:44 +0000
commitaf3c8b27266e290cf65704284f6862d0f90ee4fc (patch)
tree931e04aaa0ce725fbdc641e6880065583a9511ad /compiler/rustc_session
parent4b34c7b766a3d64d3f2a9bff06d0e53648a11013 (diff)
parent22a5125a367eedc9f1d6b49bac6557a4b4864423 (diff)
downloadrust-af3c8b27266e290cf65704284f6862d0f90ee4fc.tar.gz
rust-af3c8b27266e290cf65704284f6862d0f90ee4fc.zip
Auto merge of #101841 - nnethercote:rm-save-analysis, r=Mark-Simulacrum
Remove save-analysis.

Most tests involving save-analysis were removed, but I kept a few where the `-Zsave-analysis` was an add-on to the main thing being tested, rather than the main thing being tested.

Closes https://github.com/rust-lang/rust/issues/43606
Diffstat (limited to 'compiler/rustc_session')
-rw-r--r--compiler/rustc_session/src/options.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs
index 81f7f6d72ae..d9e68320f8f 100644
--- a/compiler/rustc_session/src/options.rs
+++ b/compiler/rustc_session/src/options.rs
@@ -1629,9 +1629,6 @@ options! {
     saturating_float_casts: Option<bool> = (None, parse_opt_bool, [TRACKED],
         "make float->int casts UB-free: numbers outside the integer type's range are clipped to \
         the max/min integer respectively, and NaN is mapped to 0 (default: yes)"),
-    save_analysis: bool = (false, parse_bool, [UNTRACKED],
-        "write syntax and type analysis (in JSON format) information, in \
-        addition to normal output (default: no)"),
     self_profile: SwitchWithOptPath = (SwitchWithOptPath::Disabled,
         parse_switch_with_opt_path, [UNTRACKED],
         "run the self profiler and output the raw event data"),