[Lldb-commits] [lldb] [lldb] Support PtrAuth in the expression evaluator (PR #186001)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 11 19:09:24 PDT 2026


================
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+int add(int a, int b) { return a + b; }
+int mul(int a, int b) { return a * b; }
+
+int main(void) {
+  printf("%d %d\n", add(2, 3), mul(4, 5));
+  return 0; // break here
+}
----------------
JDevlieghere wrote:

Yeah, that's right. I'm only testing function pointers for now as that's an obvious use case that wouldn't work without my patch. The goal is to get comprehensive coverage when we run *all* the LLDB tests compiled to arm64e. 

https://github.com/llvm/llvm-project/pull/186001


More information about the lldb-commits mailing list