repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Recommit "rL366894: [yaml2obj] - Allow custom fields for the SHT_UNDEF sections."
[llvm-complete.git]
/
test
/
tools
/
llvm-opt-report
/
Inputs
/
q2.c
blob
d68a369f1f74f5010d29d5a5288c854403e34c94
1
void
bar
();
2
void
foo
(
int
n
) {
3
for
(
int
i
=
0
;
i
<
n
; ++
i
)
for
(
int
j
=
0
;
j
<
n
; ++
j
)
4
bar
();
5
}
6
7
void
quack
() {
8
foo
(
4
);
9
}
10
11
void
quack2
() {
12
foo
(
4
);
13
}
14