1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-11 00:39:36 +00:00

Add a simple testcase for lowerinvoke

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23471 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-09-27 18:34:31 +00:00
parent 333bd835bd
commit 90b108774f

@ -0,0 +1,28 @@
; RUN: llvm-as < %s | opt -lowerinvoke -disable-output &&
; RUN: llvm-as < %s | opt -lowerinvoke -disable-output -enable-correct-eh-support
implementation
int %foo() {
invoke int %foo() to label %Ok unwind label %Crap
Ok:
invoke int %foo() to label %Ok2 unwind label %Crap
Ok2:
ret int 2
Crap:
ret int 1
}
int %bar(int %blah) {
br label %doit
doit:
;; Value live across an unwind edge.
%B2 = add int %blah, 1
invoke int %foo() to label %Ok unwind label %Crap
Ok:
invoke int %foo() to label %Ok2 unwind label %Crap
Ok2:
ret int 2
Crap:
ret int %B2
}