repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git]
/
compiler-rt
/
test
/
profile
/
Inputs
/
instrprof-comdat-2.cpp
blob
ce68d54e8c5eeb558f55bd45c0ac103f783ae38f
1
#include
"instrprof-comdat.h"
2
3
int
bar
(
int
I
) {
4
5
FOO
<
long
>
Foo
;
6
FOO
<
int
>
Foo2
;
7
8
if
(
I
>
5
)
9
return
(
int
)
Foo
.
DoIt
(
10
);
10
else
11
return
(
int
)
Foo2
.
DoIt
(
I
);
12
}