From 8abd83883830da4f38ba67983a4f5c0c6861c555 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 9 Feb 2011 16:40:56 +0000 Subject: [PATCH] remove a broken test, this is matching nounwind on intrinsics, not the old unwind instruction llvm-svn: 125188 --- test/FrontendC++/2003-08-24-Cleanup.cpp | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 test/FrontendC++/2003-08-24-Cleanup.cpp diff --git a/test/FrontendC++/2003-08-24-Cleanup.cpp b/test/FrontendC++/2003-08-24-Cleanup.cpp deleted file mode 100644 index 9f20ad6b714..00000000000 --- 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(); -}