From: Chris Lattner Date: Wed, 9 Feb 2011 16:40:56 +0000 (+0000) Subject: remove a broken test, this is matching nounwind on intrinsics, not the old unwind... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=71f4391b2e50c4db2e97e13f902300f77a8718e7;p=oota-llvm.git 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 --- 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(); -}