1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 22:12:57 +02:00

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 dafc330bf6
commit 8abd838838

View File

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