Sign in
cobalt
/
cobalt
/
ac9ac065c5083565917b15e7a672a79599f2f00b
/
.
/
src
/
third_party
/
llvm-project
/
llvm
/
test
/
tools
/
llvm-opt-report
/
Inputs
/
q.c
blob: 0982c6afdfe5cc0ef370bffc6f344b9a38015bda [
file
] [
log
] [
blame
]
void
bar
();
void
foo
(
int
n
)
{
for
(
int
i
=
0
;
i
<
n
;
++
i
)
bar
();
}
void
quack
()
{
foo
(
4
);
}
void
quack2
()
{
foo
(
4
);
}