This test is completely invalid with the modern EH model. Delete.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140213 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2011-09-20 23:52:09 +00:00
parent 79782fc864
commit 4d1d86bac9

View File

@ -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
}