[Lldb-commits] [lldb] [lldb] Automatic indexing for synthetic children of collections (PR #174885)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 4 10:46:26 PST 2026
================
@@ -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
More information about the lldb-commits
mailing list