Files
clang-p2996/compiler-rt/test/profile/Inputs/extern_template2.cpp
Xinliang David Li adbb7b7b57 [PGO] add a test for available_externally functions
llvm-svn: 262161
2016-02-28 00:45:13 +00:00

10 lines
117 B
C++

#define USE
#include "extern_template.h"
#undef USE
extern Test<int> TO;
int bar() {
TO.doIt(5);
return TO.M;
}