remove a broken test, this is matching nounwind on intrinsics, not the old unwind...
authorChris Lattner <sabre@nondot.org>
Wed, 9 Feb 2011 16:40:56 +0000 (16:40 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 9 Feb 2011 16:40:56 +0000 (16:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125188 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC++/2003-08-24-Cleanup.cpp [deleted file]

diff --git a/test/FrontendC++/2003-08-24-Cleanup.cpp b/test/FrontendC++/2003-08-24-Cleanup.cpp
deleted file mode 100644 (file)
index 9f20ad6..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: %llvmgxx -xc++ %s -S -o - | grep unwind
-
-struct S { ~S(); };
-
-int mightthrow();
-
-int test() {
-  S s;
-  mightthrow();
-}