aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Spickett <david.spickett@linaro.org>2022-01-24 11:16:34 +0000
committerDavid Spickett <david.spickett@linaro.org>2022-01-24 11:19:49 +0000
commit3e6be0241b31265953d82bad0164d3e0c24cf9d7 (patch)
treedd9b67c64df593bf85a0535856277506913703d3
parentaf773a18181dc1a1e3846f518b2d44f2abbbdf87 (diff)
downloadllvm-3e6be0241b31265953d82bad0164d3e0c24cf9d7.zip
llvm-3e6be0241b31265953d82bad0164d3e0c24cf9d7.tar.gz
llvm-3e6be0241b31265953d82bad0164d3e0c24cf9d7.tar.bz2
[lldb] Update release notes with non-address bit handling changes
This adds the "memory find" (https://reviews.llvm.org/D117299) and "memory tag" (https://reviews.llvm.org/D117672) commands and puts them all in one list.
-rw-r--r--llvm/docs/ReleaseNotes.rst11
1 files changed, 8 insertions, 3 deletions
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst
index 5825a6e..15f7428a 100644
--- a/llvm/docs/ReleaseNotes.rst
+++ b/llvm/docs/ReleaseNotes.rst
@@ -163,9 +163,14 @@ 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.
-* The ``memory read`` command now ignores non-address bits in start and end
- addresses. In addition, non-address bits will not be shown in the addresses
- in the output.
+* The following commands now ignore non-address bits (e.g. AArch64 pointer
+ signatures) in address arguments. In addition, non-address bits will not
+ be shown in the output of the commands.
+
+ * ``memory find``
+ * ``memory read``
+ * ``memory tag read``
+ * ``memory tag write``
Changes to Sanitizers
---------------------