aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-11-02-WeakLinkage.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-08-20 00:17:58 +0000
committerEric Christopher <echristo@apple.com>2011-08-20 00:17:58 +0000
commitca020c124eacc6edede13535d9effb152fe699fd (patch)
tree8f112373335214674f15cff7d8493e1159acd6bc /test/FrontendC++/2003-11-02-WeakLinkage.cpp
parentac3656ed7a67eaacb8d2c62e1841ed4df799f72a (diff)
Remove the rest of the files in FrontendC++ and the directory itself.
All tests have been updated and migrated into clang or were obsolete. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2003-11-02-WeakLinkage.cpp')
-rw-r--r--test/FrontendC++/2003-11-02-WeakLinkage.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/FrontendC++/2003-11-02-WeakLinkage.cpp b/test/FrontendC++/2003-11-02-WeakLinkage.cpp
deleted file mode 100644
index 748ca6385b..0000000000
--- a/test/FrontendC++/2003-11-02-WeakLinkage.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-// 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>();
-}
-