================
@@ -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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to