summaryrefslogtreecommitdiff
path: root/test/FrontendC++
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-02-09 16:40:56 +0000
committerChris Lattner <sabre@nondot.org>2011-02-09 16:40:56 +0000
commit71f4391b2e50c4db2e97e13f902300f77a8718e7 (patch)
tree265cbad18783169b6cb0f939837e8fc06e152bf5 /test/FrontendC++
parent6b38126da3dcc924b37715c70fa8abde69e02634 (diff)
downloadllvm-71f4391b2e50c4db2e97e13f902300f77a8718e7.tar.gz
llvm-71f4391b2e50c4db2e97e13f902300f77a8718e7.tar.bz2
llvm-71f4391b2e50c4db2e97e13f902300f77a8718e7.tar.xz
remove a broken test, this is matching nounwind on intrinsics, not the old unwind instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125188 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++')
-rw-r--r--test/FrontendC++/2003-08-24-Cleanup.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/FrontendC++/2003-08-24-Cleanup.cpp b/test/FrontendC++/2003-08-24-Cleanup.cpp
deleted file mode 100644
index 9f20ad6b71..0000000000
--- a/test/FrontendC++/2003-08-24-Cleanup.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: %llvmgxx -xc++ %s -S -o - | grep unwind
-
-struct S { ~S(); };
-
-int mightthrow();
-
-int test() {
- S s;
- mightthrow();
-}