[llvm] 68cac47 - Add release notes for the LLDB impact from the array type name change
David Blaikie via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 25 10:19:46 PDT 2021
Author: David Blaikie
Date: 2021-10-25T10:17:44-07:00
New Revision: 68cac47c26853ac7c7f3b4b12577779b75786000
URL: https://github.com/llvm/llvm-project/commit/68cac47c26853ac7c7f3b4b12577779b75786000
DIFF: https://github.com/llvm/llvm-project/commit/68cac47c26853ac7c7f3b4b12577779b75786000.diff
LOG: Add release notes for the LLDB impact from the array type name change
Changing the array type printing from `int [N]` to `int[N]` impacts lldb
pretty printer registration & may need to be updated to handle the
dropped space between type and dimensions.
Added:
Modified:
llvm/docs/ReleaseNotes.rst
Removed:
################################################################################
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index cbfb05421ff3..2b43915bf47b 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -157,6 +157,10 @@ Changes to the LLVM tools
Changes to LLDB
---------------------------------
+* A change in Clang's type printing has changed the way LLDB names array types
+ (from ``int [N]`` to ``int[N]``) - LLDB pretty printer type name matching
+ code may need to be updated to handle this.
+
Changes to Sanitizers
---------------------
More information about the llvm-commits
mailing list