Files
clang-p2996/compiler-rt/test/profile/Inputs/extern_template1.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
111 B
C++

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