Sign in
cobalt
/
cobalt
/
ac9ac065c5083565917b15e7a672a79599f2f00b
/
.
/
src
/
third_party
/
llvm-project
/
llvm
/
test
/
tools
/
llvm-opt-report
/
Inputs
/
dm.c
blob: b031cd2b02918e9bef0233ca1995e8a4f48e58f7 [
file
] [
log
] [
blame
]
void
bar
(
void
);
void
foo
(
int
n
)
{
if
(
n
)
{
bar
();
}
else
{
while
(
1
)
{}
}
}
void
quack
(
void
)
{
foo
(
0
);
}
void
quack2
(
void
)
{
foo
(
4
);
}