diff options
| author | Sam Estep <sam@samestep.com> | 2024-11-14 16:12:17 -0500 |
|---|---|---|
| committer | Sam Estep <sam@samestep.com> | 2024-11-15 12:46:40 -0500 |
| commit | 090c24fbbfde43ebffb8a05e26bff4aceb98dfb8 (patch) | |
| tree | e1d9939c67cb970d891345de27c1ab20517b46a3 /compiler/rustc_session/src | |
| parent | 12eaa3ab8465431d18696489e29be95fedf4da6d (diff) | |
| download | rust-090c24fbbfde43ebffb8a05e26bff4aceb98dfb8.tar.gz rust-090c24fbbfde43ebffb8a05e26bff4aceb98dfb8.zip | |
Merge `-Zhir-stats` into `-Zinput-stats`
Diffstat (limited to 'compiler/rustc_session/src')
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index f485e8cace5..d94b503de18 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1805,8 +1805,6 @@ options! { environment variable `RUSTC_GRAPHVIZ_FONT` (default: `Courier, monospace`)"), has_thread_local: Option<bool> = (None, parse_opt_bool, [TRACKED], "explicitly enable the `cfg(target_thread_local)` directive"), - hir_stats: bool = (false, parse_bool, [UNTRACKED], - "print some statistics about AST and HIR (default: no)"), human_readable_cgu_names: bool = (false, parse_bool, [TRACKED], "generate human-readable, predictable names for codegen units (default: no)"), identify_regions: bool = (false, parse_bool, [UNTRACKED], @@ -1838,7 +1836,7 @@ options! { inline_mir_threshold: Option<usize> = (None, parse_opt_number, [TRACKED], "a default MIR inlining threshold (default: 50)"), input_stats: bool = (false, parse_bool, [UNTRACKED], - "gather statistics about the input (default: no)"), + "print some statistics about AST and HIR (default: no)"), instrument_mcount: bool = (false, parse_bool, [TRACKED], "insert function instrument code for mcount-based tracing (default: no)"), instrument_xray: Option<InstrumentXRay> = (None, parse_instrument_xray, [TRACKED], |
