Skip to content

Commit 2238b00

Browse files
committed
Update docs for -Clink-dead-code to discourage its use
1 parent 419b3e2 commit 2238b00

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

compiler/rustc_session/src/config.rs

-7
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,6 @@ pub enum LtoCli {
132132
}
133133

134134
/// The different settings that the `-C instrument-coverage` flag can have.
135-
///
136-
/// Coverage instrumentation now supports combining `-C instrument-coverage`
137-
/// with compiler and linker optimization (enabled with `-O` or `-C opt-level=1`
138-
/// and higher). Nevertheless, there are many variables, depending on options
139-
/// selected, code structure, and enabled attributes. If errors are encountered,
140-
/// either while compiling or when generating `llvm-cov show` reports, consider
141-
/// lowering the optimization level, or including/excluding `-C link-dead-code`.
142135
#[derive(Clone, Copy, PartialEq, Hash, Debug)]
143136
pub enum InstrumentCoverage {
144137
/// `-C instrument-coverage=no` (or `off`, `false` etc.)

compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@ options! {
16381638
"extra arguments to append to the linker invocation (space separated)"),
16391639
#[rustc_lint_opt_deny_field_access("use `Session::link_dead_code` instead of this field")]
16401640
link_dead_code: Option<bool> = (None, parse_opt_bool, [TRACKED],
1641-
"keep dead code at link time (useful for code coverage) (default: no)"),
1641+
"try to generate and link dead code (default: no)"),
16421642
link_self_contained: LinkSelfContained = (LinkSelfContained::default(), parse_link_self_contained, [UNTRACKED],
16431643
"control whether to link Rust provided C objects/libraries or rely \
16441644
on a C toolchain or linker installed in the system"),

src/doc/rustc/src/codegen-options/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -207,14 +207,14 @@ options should be separated by spaces.
207207

208208
## link-dead-code
209209

210-
This flag controls whether the linker will keep dead code. It takes one of
211-
the following values:
210+
Tries to generate and link dead code that would otherwise not be generated or
211+
linked. It takes one of the following values:
212212

213-
* `y`, `yes`, `on`, `true` or no value: keep dead code.
213+
* `y`, `yes`, `on`, `true` or no value: try to keep dead code.
214214
* `n`, `no`, `off` or `false`: remove dead code (the default).
215215

216-
An example of when this flag might be useful is when trying to construct code coverage
217-
metrics.
216+
This flag was historically used to help improve some older forms of code
217+
coverage measurement. Its use is not recommended.
218218

219219
## link-self-contained
220220

0 commit comments

Comments
 (0)