Remove printout, realize that instructions in the entry block dominate all
[oota-llvm.git] / test / C++Frontend / 2003-11-02-WeakLinkage.cpp.tr
1 // RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
2
3 template<class T>
4 void thefunc();
5
6 template<class T>
7 inline void thefunc() {}
8
9 void test() {
10   thefunc<int>();
11 }
12