brintos

brintos / llvm-project-archived public Read only

0
0
Text · 163 B · 536758b Raw
13 lines · cpp
1// Helper that the lldb command `statistics dump` works in split-dwarf mode.2 3struct Baz {4  int x;5  bool y;6};7 8void baz() {9  Baz b;10  b.x = 1;11  b.y = true;12}13