aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-08-28-SaveExprBug.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-02-09 16:41:31 +0000
committerChris Lattner <sabre@nondot.org>2011-02-09 16:41:31 +0000
commitf18ed3853a9def03566ca44af1650c149af19711 (patch)
treeac77ee495bc3fabce986a439e015fa5e2f957811 /test/FrontendC++/2003-08-28-SaveExprBug.cpp
parent71f4391b2e50c4db2e97e13f902300f77a8718e7 (diff)
remove a small scattering of basically pointless tests. These are
all covered by llvm-test, which is what they were reduced from back in 2003. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125189 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2003-08-28-SaveExprBug.cpp')
-rw-r--r--test/FrontendC++/2003-08-28-SaveExprBug.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/FrontendC++/2003-08-28-SaveExprBug.cpp b/test/FrontendC++/2003-08-28-SaveExprBug.cpp
deleted file mode 100644
index 98c5f5d8d6..0000000000
--- a/test/FrontendC++/2003-08-28-SaveExprBug.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
-
-
-char* eback();
-
-template<typename foo>
-struct basic_filebuf {
- char *instancevar;
-
- void callee() {
- instancevar += eback() != eback();
- }
-
- void caller();
-};
-
-
-template<typename _CharT>
-void basic_filebuf<_CharT>::caller() {
- callee();
-}
-
-
-template class basic_filebuf<char>;