[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / compiler-rt / test / profile / Inputs / extern_template.cpp
blob98c6c16b4a8a8baedfc30e2e80c330a2da88ea8a
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();
11 if (R != 10)
12 return 1;
13 return 0;