Skip to content

Commit cfa09d4

Browse files
authored
Unrolled build for rust-lang#132522
Rollup merge of rust-lang#132522 - senekor:consistenst-codegen-help, r=compiler-errors make codegen help output more consistent The output of `rustc -C help` generally has one option per line. There was one exception because of a (presumably) forgotten line continuation escape.
2 parents 59ae5eb + 8837fc7 commit cfa09d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,7 @@ options! {
15851585
link_dead_code: Option<bool> = (None, parse_opt_bool, [TRACKED],
15861586
"keep dead code at link time (useful for code coverage) (default: no)"),
15871587
link_self_contained: LinkSelfContained = (LinkSelfContained::default(), parse_link_self_contained, [UNTRACKED],
1588-
"control whether to link Rust provided C objects/libraries or rely
1588+
"control whether to link Rust provided C objects/libraries or rely \
15891589
on a C toolchain or linker installed in the system"),
15901590
linker: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
15911591
"system linker to link outputs with"),

0 commit comments

Comments
 (0)