diff options
| author | Patrick Walton <pcwalton@fb.com> | 2022-11-05 01:13:42 -0700 |
|---|---|---|
| committer | khei4 <kk.asano.luxy@gmail.com> | 2023-07-16 22:56:04 +0900 |
| commit | 138f522b590492d1ef80f1483382a2a678dec7d9 (patch) | |
| tree | c56dfa6ddca0faf10cedfbdd42f31685ae15e67b | |
| parent | 2d47816cbaebb3b8f400b11fa122feae00fd5c58 (diff) | |
Don't enable by default :)
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index 90007d7c849..5b5cafa9656 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1673,7 +1673,7 @@ options! { print_llvm_passes: bool = (false, parse_bool, [UNTRACKED], "print the LLVM optimization passes being run (default: no)"), #[rustc_lint_opt_deny_field_access("use `Session::print_llvm_stats` instead of this field")] - print_llvm_stats: bool = (true, parse_bool, [UNTRACKED], + print_llvm_stats: bool = (false, parse_bool, [UNTRACKED], "print LLVM statistics (default: no)"), print_mono_items: Option<String> = (None, parse_opt_string, [UNTRACKED], "print the result of the monomorphization collection pass"), |
