about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2023-08-27 03:00:45 +0200
committerGitHub <noreply@github.com>2023-08-27 10:00:45 +0900
commit3ec2cbc4c845e312b1a177146351bd82d2124d83 (patch)
tree6575e8e3b5d27260281454c318d250a6d2a09b0a /src/doc/rustc-dev-guide
parentf2bae7f7ac0d79a0d187b95dd02305eddfeb7953 (diff)
downloadrust-3ec2cbc4c845e312b1a177146351bd82d2124d83.tar.gz
rust-3ec2cbc4c845e312b1a177146351bd82d2124d83.zip
llvm updates (#1761)
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/backend/updating-llvm.md5
-rw-r--r--src/doc/rustc-dev-guide/src/llvm-coverage-instrumentation.md2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/backend/updating-llvm.md b/src/doc/rustc-dev-guide/src/backend/updating-llvm.md
index 08af10f89bd..dd16b1e28b6 100644
--- a/src/doc/rustc-dev-guide/src/backend/updating-llvm.md
+++ b/src/doc/rustc-dev-guide/src/backend/updating-llvm.md
@@ -2,7 +2,7 @@
 
 <!-- toc -->
 
-<!-- date-check: Feb 2023 -->
+<!-- date-check: Jul 2023 -->
 There is no formal policy about when to update LLVM or what it can be updated to,
 but a few guidelines are applied:
 
@@ -52,7 +52,7 @@ An example PR:
 
 ## New LLVM Release Updates
 
-<!-- date-check: Aug 2022 -->
+<!-- date-check: Jul 2023 -->
 
 Unlike bugfixes,
 updating to a new release of LLVM typically requires a lot more work.
@@ -139,6 +139,7 @@ so let's go through each in detail.
    > - [LLVM 13](https://github.com/rust-lang/rust/pull/87570)
    > - [LLVM 14](https://github.com/rust-lang/rust/pull/93577)
    > - [LLVM 15](https://github.com/rust-lang/rust/pull/99464)
+   > - [LLVM 16](https://github.com/rust-lang/rust/pull/109474)
 
    Note that sometimes it's easiest to land [`llvm-wrapper`] compatibility as a PR
    before actually updating `src/llvm-project`.
diff --git a/src/doc/rustc-dev-guide/src/llvm-coverage-instrumentation.md b/src/doc/rustc-dev-guide/src/llvm-coverage-instrumentation.md
index af7cf30ffb6..4626c67a303 100644
--- a/src/doc/rustc-dev-guide/src/llvm-coverage-instrumentation.md
+++ b/src/doc/rustc-dev-guide/src/llvm-coverage-instrumentation.md
@@ -223,7 +223,7 @@ 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 <!-- date-check: --> Feb 2023) supports _LLVM Coverage Mapping Format_ 6.
+The Rust compiler (as of <!-- date-check: --> Jul 2023) supports _LLVM Coverage Mapping Format_ 6.
 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.