================
@@ -0,0 +1,12 @@
+struct Thing {
+ int zero;
+ int one;
+};
+
+int main() {
+ struct Thing x;
+ x.zero = 1;
+ x.one = 2;
+ __builtin_printf("break here\n");
----------------
kastiglione wrote:
I searched in clang and tried a compiler invocation for windows, and don't see
any evidence that this doesn't work.
https://github.com/llvm/llvm-project/pull/174885
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits