[Lldb-commits] [lldb] [lldb] Automatic indexing for synthetic children of collections (PR #174885)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Fri Feb 13 01:47:44 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");
----------------
Michael137 wrote:
I vaguely remember this not working on Windows. But we can give it a shot 🤷♂️
https://github.com/llvm/llvm-project/pull/174885
More information about the lldb-commits
mailing list