From 269f365acec25354a73ea0cc27ba7389750d6ca4 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Fri, 27 Jan 2023 06:25:27 +0200 Subject: [PATCH] version 5 is now not supported Removed in https://github.com/rust-lang/rust/pull/106625 --- src/llvm-coverage-instrumentation.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/llvm-coverage-instrumentation.md b/src/llvm-coverage-instrumentation.md index b29b32a62..4e3ec6465 100644 --- a/src/llvm-coverage-instrumentation.md +++ b/src/llvm-coverage-instrumentation.md @@ -222,13 +222,11 @@ properly-configured variables in LLVM IR, according to very specific details of the [_LLVM Coverage Mapping Format_][coverage-mapping-format] (Version 6).[^llvm-and-covmap-versions] -[^llvm-and-covmap-versions]: The Rust compiler (as of December 2021) -supports _LLVM Coverage Mapping Format_ Version 5 or 6. Version 5 -was introduced in _LLVM 12_, -which is (as of this writing) the minimum LLVM -version supported by the current version of Rust. Version 6 was introduced in -_LLVM 13_, which is currently the default LLVM version for Rust. The Rust -compiler will automatically use the most up-to-date coverage mapping format +[^llvm-and-covmap-versions]: +The Rust compiler (as of Jan 2023) supports _LLVM Coverage Mapping Format_ 6. +It was introduced in _LLVM 13_, which is, as of this writing, +the minimum supported LLVM version. +The Rust compiler will automatically use the most up-to-date coverage mapping format version that is compatible with the compiler's built-in version of LLVM. ```rust