// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak // The template should compile to linkonce linkage, not weak linkage. template void thefunc(); template inline void thefunc() {} void test() { thefunc(); }