You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #116094 - Swatinem:coverage-branch-gate, r=wesleywiser
Introduce `-C instrument-coverage=branch` to gate branch coverage
This was extracted from #115061 and can land independently from other coverage related work.
The flag is unused for now, but is added in advance of adding branch coverage support.
It is an unstable, nightly only flag that needs to be used in combination with `-Zunstable-options`, like so: `-Zunstable-options -C instrument-coverage=branch`.
The goal is to develop branch coverage as an unstable opt-in feature first, before it matures and can be turned on by default.
Copy file name to clipboardexpand all lines: compiler/rustc_session/src/options.rs
+4-1
Original file line number
Diff line number
Diff line change
@@ -389,7 +389,7 @@ mod desc {
389
389
pubconst parse_mir_spanview:&str = "`statement` (default), `terminator`, or `block`";
390
390
pubconst parse_dump_mono_stats:&str = "`markdown` (default) or `json`";
391
391
pubconst parse_instrument_coverage:&str =
392
-
"`all` (default), `except-unused-generics`, `except-unused-functions`, or `off`";
392
+
"`all` (default), `branch`, `except-unused-generics`, `except-unused-functions`, or `off`";
393
393
pubconst parse_instrument_xray:&str = "either a boolean (`yes`, `no`, `on`, `off`, etc), or a comma separated list of settings: `always` or `never` (mutually exclusive), `ignore-loops`, `instruction-threshold=N`, `skip-entry`, `skip-exit`";
394
394
pubconst parse_unpretty:&str = "`string` or `string=string`";
395
395
pubconst parse_treat_err_as_bug:&str = "either no value or a non-negative number";
0 commit comments