Sign in
llvm
/
llvm-project
/
e8391d46198aa1390c1bcaff94de42eed34ae26b
/
.
/
lldb
/
test
/
API
/
commands
/
statistics
/
basic
/
baz.cpp
blob: 536758b17d839984fe355aed3df25923ec9e7ac5 [
file
] [
log
] [
blame
]
// Helper that the lldb command `statistics dump` works in split-dwarf mode.
struct
Baz
{
int
x
;
bool
y
;
};
void
baz
()
{
Baz
b
;
b
.
x
=
1
;
b
.
y
=
true
;
}