https://github.com/Sirraide created 
https://github.com/llvm/llvm-project/pull/208878

This was supposed to be part of the original patch, but we lost it because I 
didn't pay enough attention when I was merging the release notes after the 
migration from RST -> MD (I deleted the RST file but forgot to move the release 
note to the MD file...)

>From 5bdb93516b12023f8beb6e7b4ae45ea3393aa604 Mon Sep 17 00:00:00 2001
From: Sirraide <[email protected]>
Date: Sat, 11 Jul 2026 06:06:38 +0200
Subject: [PATCH 1/2] [Clang] [Docs] Add release note for expansion statements

This was supposed to be part of the original patch, but it got lost
because I didn't pay enough attention when I was merging the release
notes after the migration from RST -> MD (I deleted the RST file
but forgot to move the release note to the MD file...)
---
 clang/docs/ReleaseNotes.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/clang/docs/ReleaseNotes.md b/clang/docs/ReleaseNotes.md
index 365d991b209a4..3e40036a34112 100644
--- a/clang/docs/ReleaseNotes.md
+++ b/clang/docs/ReleaseNotes.md
@@ -258,6 +258,9 @@ latest release, please see the [Clang Web 
Site](https://clang.llvm.org) or the
 
 - Clang now propagates `constinit` and `constexpr` in structured bindings with 
tuple-like initializers.
 
+- Clang now has partial support for `P1306R5 <https://wg21.link/P1306R5>`_ 
Expansion Statements. Iterating expansion
+  statements currently cannot be expanded and will result in a diagnostic, but 
other types of expansion statements work.
+
 #### C++23 Feature Support
 
 - Partially implement Itanium mangling for pack indexing. Partially 
substituted packs are not yet supported. (#GH112003)

>From 90988179991afba7f18647e4def288b5e9db7392 Mon Sep 17 00:00:00 2001
From: Sirraide <[email protected]>
Date: Sat, 11 Jul 2026 06:10:12 +0200
Subject: [PATCH 2/2] replace rst link w/ md link

---
 clang/docs/ReleaseNotes.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clang/docs/ReleaseNotes.md b/clang/docs/ReleaseNotes.md
index 3e40036a34112..ed71115e3fa45 100644
--- a/clang/docs/ReleaseNotes.md
+++ b/clang/docs/ReleaseNotes.md
@@ -258,7 +258,7 @@ latest release, please see the [Clang Web 
Site](https://clang.llvm.org) or the
 
 - Clang now propagates `constinit` and `constexpr` in structured bindings with 
tuple-like initializers.
 
-- Clang now has partial support for `P1306R5 <https://wg21.link/P1306R5>`_ 
Expansion Statements. Iterating expansion
+- Clang now has partial support for [P1306R5](https://wg21.link/P1306R5) 
Expansion Statements. Iterating expansion
   statements currently cannot be expanded and will result in a diagnostic, but 
other types of expansion statements work.
 
 #### C++23 Feature Support

_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to