remove a broken test, this is matching nounwind on intrinsics, not the old unwind instruction

llvm-svn: 125188
This commit is contained in:
Chris Lattner 2011-02-09 16:40:56 +00:00
parent b36195ab26
commit 7f4b42eee9
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
// RUN: %llvmgxx -xc++ %s -S -o - | grep unwind
struct S { ~S(); };
int mightthrow();
int test() {
S s;
mightthrow();
}