[clang] 6c32075 - [Clang][doc][NFC]Remove duplicate items in ReleaseNotes
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 29 10:31:11 PDT 2022
Author: wangyihan
Date: 2022-03-29T10:30:34-07:00
New Revision: 6c32075d29d4fe3985aa8a98b23c33902190a15d
URL: https://github.com/llvm/llvm-project/commit/6c32075d29d4fe3985aa8a98b23c33902190a15d
DIFF: https://github.com/llvm/llvm-project/commit/6c32075d29d4fe3985aa8a98b23c33902190a15d.diff
LOG: [Clang][doc][NFC]Remove duplicate items in ReleaseNotes
Remove duplicate items in ReleaseNotes for __builtin_dump_struct, the
code changes int patch https://reviews.llvm.org/D122248
Differential Revision: https://reviews.llvm.org/D122668
Added:
Modified:
clang/docs/ReleaseNotes.rst
Removed:
################################################################################
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index fb363ecb783df..e893f5b4627c7 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/docs/ReleaseNotes.rst
@@ -94,7 +94,9 @@ Bug Fixes
`51414 <https://github.com/llvm/llvm-project/issues/51414>`_,
`51416 <https://github.com/llvm/llvm-project/issues/51416>`_,
and `51641 <https://github.com/llvm/llvm-project/issues/51641>`_.
-
+- The builtin function __builtin_dump_struct would crash clang when the target
+ struct contains a bitfield. It now correctly handles bitfields.
+ This fixes Issue `Issue 54462 <https://github.com/llvm/llvm-project/issues/54462>`_.
Improvements to Clang's diagnostics
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -111,10 +113,9 @@ Improvements to Clang's diagnostics
Non-comprehensive list of changes in this release
-------------------------------------------------
-- The builtin function __builtin_dump_struct would crash clang when the target
- struct have bitfield. Now it fixed, and __builtin_dump_struct support dump
- the bitwidth of bitfields.
- This fixes `Issue 54462 <https://github.com/llvm/llvm-project/issues/54462>`_.
+- Improve __builtin_dump_struct:
+ - Support bitfields in struct and union.
+ - Improve the dump format, dump both bitwidth(if its a bitfield) and field value.
New Compiler Flags
------------------
@@ -156,12 +157,6 @@ Attribute Changes in Clang
- The ``__declspec(naked)`` attribute can no longer be written on a member
function in Microsoft compatibility mode, matching the behavior of cl.exe.
-- Improve __builtin_dump_struct:
-
- - Support bitfields in struct and union.
-
- - Improve the dump format, dump both bitwidth(if its a bitfield) and field value.
-
Windows Support
---------------
More information about the cfe-commits
mailing list