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

source code of lldb/test/API/commands/statistics/basic/baz.cpp