Skip to content

Commit 1b66362

Browse files
authored
Unrolled build for rust-lang#122442
Rollup merge of rust-lang#122442 - RalfJung:print-mono-items, r=compiler-errors extend docs of -Zprint-mono-items Currently the values one can set this to are not documented anywhere. I think ideally this flag wouldn't overwrite the collector's behavior, a "print" flag should just print what happens but not change what happens. But our codegen-units tests rely on being able to collect all items without the other side-effects of `-C link-dead-code` and I can't tell whether that reliance is incidental or crucial, so I'm not touching this and just documenting the (messy) status quo.
2 parents 5ac0b2d + 2366d97 commit 1b66362

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

compiler/rustc_session/src/options.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1831,7 +1831,9 @@ options! {
18311831
print_llvm_passes: bool = (false, parse_bool, [UNTRACKED],
18321832
"print the LLVM optimization passes being run (default: no)"),
18331833
print_mono_items: Option<String> = (None, parse_opt_string, [UNTRACKED],
1834-
"print the result of the monomorphization collection pass"),
1834+
"print the result of the monomorphization collection pass. \
1835+
Value `lazy` means to use normal collection; `eager` means to collect all items.
1836+
Note that this overwrites the effect `-Clink-dead-code` has on collection!"),
18351837
print_type_sizes: bool = (false, parse_bool, [UNTRACKED],
18361838
"print layout information for each type encountered (default: no)"),
18371839
print_vtable_sizes: bool = (false, parse_bool, [UNTRACKED],

0 commit comments

Comments
 (0)