This test is completely invalid with the modern EH model. Delete.
authorBill Wendling <isanbard@gmail.com>
Tue, 20 Sep 2011 23:52:09 +0000 (23:52 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 20 Sep 2011 23:52:09 +0000 (23:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140213 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/Generic/2004-02-08-UnwindSupport.ll [deleted file]

diff --git a/test/CodeGen/Generic/2004-02-08-UnwindSupport.ll b/test/CodeGen/Generic/2004-02-08-UnwindSupport.ll
deleted file mode 100644 (file)
index 393062a..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llc < %s -enable-correct-eh-support
-
-define i32 @test() {
-        unwind
-}
-
-define i32 @main() {
-        %X = invoke i32 @test( )
-                        to label %cont unwind label %EH         ; <i32> [#uses=0]
-
-cont:           ; preds = %0
-        ret i32 1
-
-EH:             ; preds = %0
-        ret i32 0
-}
-