Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame^] | 1 | // RUN: %llvmgcc -xc++ -S -o - %s | not grep weak |
2 | // The template should compile to linkonce linkage, not weak linkage. | ||||
3 | |||||
4 | template<class T> | ||||
5 | void thefunc(); | ||||
6 | |||||
7 | template<class T> | ||||
8 | inline void thefunc() {} | ||||
9 | |||||
10 | void test() { | ||||
11 | thefunc<int>(); | ||||
12 | } | ||||
13 |