about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2024-03-12 12:30:33 +1100
committerZalathar <Zalathar@users.noreply.github.com>2024-03-13 11:14:09 +1100
commit1f544ce305bc207c9d0539938219caf01ea230c9 (patch)
tree3b8daa7fa9e38a3f2dd7bda4200d60e03968024a /src
parent4a0cc881dcc4d800f10672747f61a94377ff6662 (diff)
coverage: Remove all unstable values of `-Cinstrument-coverage`
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc/src/instrument-coverage.md9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/doc/rustc/src/instrument-coverage.md b/src/doc/rustc/src/instrument-coverage.md
index 2f93252eddc..23cb1e05ed1 100644
--- a/src/doc/rustc/src/instrument-coverage.md
+++ b/src/doc/rustc/src/instrument-coverage.md
@@ -346,15 +346,6 @@ $ llvm-cov report \
   more fine-grained coverage options are added.
   Using this value is currently not recommended.
 
-### Unstable values
-
-- `-Z unstable-options -C instrument-coverage=branch`:
-  Placeholder for potential branch coverage support in the future.
-- `-Z unstable-options -C instrument-coverage=except-unused-generics`:
-  Instrument all functions except unused generics.
-- `-Z unstable-options -C instrument-coverage=except-unused-functions`:
-  Instrument only used (called) functions and instantiated generic functions.
-
 ## Other references
 
 Rust's implementation and workflow for source-based code coverage is based on the same library and tools used to implement [source-based code coverage in Clang]. (This document is partially based on the Clang guide.)