[Lldb-commits] [lldb] 9c6f85f - [lldb][NFC] fix two small typeos in aarch64-linxu.md
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 17 19:46:46 PDT 2024
Author: Jason Molenda
Date: 2024-10-17T19:46:08-07:00
New Revision: 9c6f85f57a74278e4833f3da2606d80e7577d6d5
URL: https://github.com/llvm/llvm-project/commit/9c6f85f57a74278e4833f3da2606d80e7577d6d5
DIFF: https://github.com/llvm/llvm-project/commit/9c6f85f57a74278e4833f3da2606d80e7577d6d5.diff
LOG: [lldb][NFC] fix two small typeos in aarch64-linxu.md
Added:
Modified:
lldb/docs/use/aarch64-linux.md
Removed:
################################################################################
diff --git a/lldb/docs/use/aarch64-linux.md b/lldb/docs/use/aarch64-linux.md
index 803f56d16f981e..70432f57857a59 100644
--- a/lldb/docs/use/aarch64-linux.md
+++ b/lldb/docs/use/aarch64-linux.md
@@ -160,7 +160,7 @@ Kernel does.
### Visibility of an Inactive ZA Register
LLDB does not handle registers that can come and go at runtime (SVE changes
-size but it does not dissappear). Therefore when `za` is not enabled, LLDB
+size but it does not disappear). Therefore when `za` is not enabled, LLDB
will return a block of 0s instead. This block will match the expected size of
`za`:
```
@@ -183,9 +183,9 @@ If you want to know whether `za` is active or not, refer to bit 2 of the
As for SVE, LLDB does not know how the debugee will use `za`, and therefore
does not know how it would be best to display it. At any time any given
-instrucion could interpret its contents as many kinds and sizes of data.
+instruction could interpret its contents as many kinds and sizes of data.
-So LLDB will default to showing `za` as one large vector of individual bytes.
+So LLDB will default to showing `za` as one large vector of individual bytes.
You can override this with a format option (see the SVE example above).
### Expression Evaluation
@@ -228,4 +228,4 @@ bytes.
### Expression Evaluation
`zt0`'s value and whether it is active or not will be saved prior to
-expression evaluation and restored afterwards.
\ No newline at end of file
+expression evaluation and restored afterwards.
More information about the lldb-commits
mailing list