[Lldb-commits] [lldb] d478737 - [lldb][debugserver] fix typeo in SME ZA register
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 23 14:50:53 PDT 2025
Author: Jason Molenda
Date: 2025-10-23T14:43:51-07:00
New Revision: d47873784174181f1d5837f1389d23afeead734c
URL: https://github.com/llvm/llvm-project/commit/d47873784174181f1d5837f1389d23afeead734c
DIFF: https://github.com/llvm/llvm-project/commit/d47873784174181f1d5837f1389d23afeead734c.diff
LOG: [lldb][debugserver] fix typeo in SME ZA register
chunk enumeartions. Noticed by David Spickett.
NFC--no machine with a ZA register large enough to use this exists
today.
Added:
Modified:
lldb/tools/debugserver/source/MacOSX/arm64/sme_thread_status.h
Removed:
################################################################################
diff --git a/lldb/tools/debugserver/source/MacOSX/arm64/sme_thread_status.h b/lldb/tools/debugserver/source/MacOSX/arm64/sme_thread_status.h
index f33b3202ccab5..f258c5924867f 100644
--- a/lldb/tools/debugserver/source/MacOSX/arm64/sme_thread_status.h
+++ b/lldb/tools/debugserver/source/MacOSX/arm64/sme_thread_status.h
@@ -46,7 +46,7 @@ __attribute__((aligned(alignof(unsigned int))));
#define ARM_SME_ZA_STATE9 40
#define ARM_SME_ZA_STATE10 41
#define ARM_SME_ZA_STATE11 42
-#define ARM_SME_ZA_STATE12 42
+#define ARM_SME_ZA_STATE12 43
#define ARM_SME_ZA_STATE13 44
#define ARM_SME_ZA_STATE14 45
#define ARM_SME_ZA_STATE15 46
More information about the lldb-commits
mailing list