aboutsummaryrefslogtreecommitdiff
path: root/clang/docs
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2025-04-29 07:55:32 -0400
committerGitHub <noreply@github.com>2025-04-29 07:55:32 -0400
commitc5bf901b1b2804eede51b07d9d171c5656dd49fa (patch)
treeb36809ba0c3c954e8699a76fd8495df2de318858 /clang/docs
parent0b5daeb2e55e21eb8af9ca504fca82b82a27e1aa (diff)
downloadllvm-c5bf901b1b2804eede51b07d9d171c5656dd49fa.zip
llvm-c5bf901b1b2804eede51b07d9d171c5656dd49fa.tar.gz
llvm-c5bf901b1b2804eede51b07d9d171c5656dd49fa.tar.bz2
Fix crash with -ast-dump=json (#137324)
When given an invalid Objective-C extension, Clang would crash when trying to emit the mangled name of the method to the JSON dump output. Fixes #137320
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 fd873a3..61e08b1 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -220,6 +220,8 @@ Non-comprehensive list of changes in this release
- Added `__builtin_elementwise_exp10`.
- For AMDPGU targets, added `__builtin_v_cvt_off_f32_i4` that maps to the `v_cvt_off_f32_i4` instruction.
- Added `__builtin_elementwise_minnum` and `__builtin_elementwise_maxnum`.
+- No longer crashing on invalid Objective-C categories and extensions when
+ dumping the AST as JSON. (#GH137320)
New Compiler Flags
------------------