From: Bill Wendling Date: Tue, 20 Sep 2011 23:52:09 +0000 (+0000) Subject: This test is completely invalid with the modern EH model. Delete. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4d1d86bac9dbee62819b4a276fcfe01a6b004d39;p=oota-llvm.git 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 --- diff --git a/test/CodeGen/Generic/2004-02-08-UnwindSupport.ll b/test/CodeGen/Generic/2004-02-08-UnwindSupport.ll deleted file mode 100644 index 393062abf78..00000000000 --- a/test/CodeGen/Generic/2004-02-08-UnwindSupport.ll +++ /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 ; [#uses=0] - -cont: ; preds = %0 - ret i32 1 - -EH: ; preds = %0 - ret i32 0 -} -