[Lldb-commits] [lldb] [LLDB][LoongArch] Add LSX and LASX register definitions and operations (PR #120664)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 20 02:59:58 PST 2024
================
@@ -48,6 +48,10 @@ bool RegisterContextCorePOSIX_loongarch64::ReadGPR() { return true; }
bool RegisterContextCorePOSIX_loongarch64::ReadFPR() { return true; }
+bool RegisterContextCorePOSIX_loongarch64::ReadLSX() { return true; }
+
+bool RegisterContextCorePOSIX_loongarch64::ReadLASX() { return true; }
----------------
DavidSpickett wrote:
Do core files work with the code like this?
I thought you were just stubbing out the functions but I see that ReadGPR also does this and I assume that already works. Surprising.
https://github.com/llvm/llvm-project/pull/120664
More information about the lldb-commits
mailing list