Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
d22fe2b51f553f7eca200cd22b9e2247f9aea2ff
/
.
/
test
/
C++Frontend
/
2003-11-02-WeakLinkage.cpp.tr
blob: 748ca6385be9491f33df07ddbc2850d2caaec04a [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -xc++ -S -o - %s | not grep weak
// The template should compile to linkonce linkage, not weak linkage.
template
<
class
T
>
void
thefunc
();
template
<
class
T
>
inline
void
thefunc
()
{}
void
test
()
{
thefunc
<int>
();
}