llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Balázs Benics (steakhal) <details> <summary>Changes</summary> --- Full diff: https://github.com/llvm/llvm-project/pull/174399.diff 1 Files Affected: - (modified) clang/docs/ReleaseNotes.rst (+6-6) ``````````diff diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 69497505bbb30..6de27b1366c06 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -546,6 +546,12 @@ Bug Fixes in This Version - Fix an assertion failure when a ``target_clones`` attribute is only on the forward declaration of a multiversioned function. (#GH165517) (#GH129483) - Fix a crash caused by invalid format string in printf-like functions with ``-Wunsafe-buffer-usage-in-libc-call`` option enabled. (#GH170496) +- Fixed a crash when parsing ``#embed`` parameters with unmatched closing brackets. (#GH152829) +- Fixed a crash when compiling ``__real__`` or ``__imag__`` unary operator on scalar value with type promotion. (#GH160583) +- Fixed a crash when parsing invalid nested name specifier sequences + containing a single colon. (#GH167905) +- Fixed a crash when parsing malformed #pragma clang loop vectorize_width(4,8,16) + by diagnosing invalid comma-separated argument lists. (#GH166325) Bug Fixes to Compiler Builtins ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -815,12 +821,6 @@ Crash and bug fixes ^^^^^^^^^^^^^^^^^^^ - Fixed a crash in the static analyzer that when the expression in an ``[[assume(expr)]]`` attribute was enclosed in parentheses. (#GH151529) -- Fixed a crash when parsing ``#embed`` parameters with unmatched closing brackets. (#GH152829) -- Fixed a crash when compiling ``__real__`` or ``__imag__`` unary operator on scalar value with type promotion. (#GH160583) -- Fixed a crash when parsing invalid nested name specifier sequences - containing a single colon. (#GH167905) -- Fixed a crash when parsing malformed #pragma clang loop vectorize_width(4,8,16) - by diagnosing invalid comma-separated argument lists. (#GH166325) Improvements ^^^^^^^^^^^^ `````````` </details> https://github.com/llvm/llvm-project/pull/174399 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
