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
/
extern_template.cpp
blob
98c6c16b4a8a8baedfc30e2e80c330a2da88ea8a
1
#define DEF
2
#include
"extern_template.h"
3
#undef DEF
4
extern
int
bar
();
5
extern
int
foo
();
6
extern
Test
<
int
>
TO
;
7
int
main
() {
8
foo
();
9
int
R
=
bar
();
10
11
if
(
R
!=
10
)
12
return
1
;
13
return
0
;
14
}