aboutsummaryrefslogtreecommitdiff
path: root/clang/docs
diff options
context:
space:
mode:
authorYounan Zhang <zyn7109@gmail.com>2024-06-04 12:44:01 +0800
committerGitHub <noreply@github.com>2024-06-04 12:44:01 +0800
commit3d361b225fe89ce1d8c93639f27d689082bd8dad (patch)
treeeedbdbd90e304b0324b4130c983d694dfc65d78b /clang/docs
parent8ea59ec6077e85c457b27b406a679ab9d5827387 (diff)
downloadllvm-3d361b225fe89ce1d8c93639f27d689082bd8dad.zip
llvm-3d361b225fe89ce1d8c93639f27d689082bd8dad.tar.gz
llvm-3d361b225fe89ce1d8c93639f27d689082bd8dad.tar.bz2
[Clang][Sema] Tweak tryCaptureVariable for unevaluated lambdas (#93206)
This patch picks up #78598 with the hope that we can address such crashes in `tryCaptureVariable()` for unevaluated lambdas. In addition to `tryCaptureVariable()`, this also contains several other fixes on e.g. lambda parsing/dependencies. Fixes #63845 Fixes #67260 Fixes #69307 Fixes #88081 Fixes #89496 Fixes #90669 Fixes #91633
Diffstat (limited to 'clang/docs')
-rw-r--r--clang/docs/ReleaseNotes.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index 32515fb..99580c0 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -824,6 +824,8 @@ Bug Fixes to C++ Support
- Fix a crash when a variable is captured by a block nested inside a lambda. (Fixes #GH93625).
- Fixed a type constraint substitution issue involving a generic lambda expression. (#GH93821)
- Fix a crash caused by improper use of ``__array_extent``. (#GH80474)
+- Fixed several bugs in capturing variables within unevaluated contexts. (#GH63845), (#GH67260), (#GH69307),
+ (#GH88081), (#GH89496), (#GH90669) and (#GH91633).
Bug Fixes to AST Handling
^^^^^^^^^^^^^^^^^^^^^^^^^