mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
fc82fabe00
This is the first checkin for PR1269, the new EH infrastructure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47802 91177308-0d34-0410-b5e6-96231b3b80d8
49 lines
917 B
LLVM
49 lines
917 B
LLVM
; RUN: llvm-as < %s | llvm-dis | llvm-as -disable-output
|
|
; PR1269
|
|
; END
|
|
; http://nondot.org/sabre/LLVMNotes/ExceptionHandlingChanges.txt
|
|
|
|
define i1 @test1(i8 %i, i8 %j) {
|
|
entry: unwind_to %target
|
|
%tmp = sub i8 %i, %j ; <i8> [#uses=1]
|
|
%b = icmp eq i8 %tmp, 0 ; <i1> [#uses=1]
|
|
ret i1 %b
|
|
target:
|
|
ret i1 false
|
|
}
|
|
|
|
define i1 @test2(i8 %i, i8 %j) {
|
|
unwind_to %1
|
|
%tmp = sub i8 %i, %j ; <i8> [#uses=1]
|
|
%b = icmp eq i8 %tmp, 0 ; <i1> [#uses=1]
|
|
ret i1 %b
|
|
; No predecessors!
|
|
ret i1 false
|
|
}
|
|
|
|
define i1 @test3(i8 %i, i8 %j) {
|
|
unwind_to %1
|
|
%tmp = sub i8 %i, %j ; <i8> [#uses=1]
|
|
%b = icmp eq i8 %tmp, 0 ; <i1> [#uses=1]
|
|
ret i1 %b
|
|
unwind_to %0
|
|
ret i1 false
|
|
}
|
|
|
|
define i1 @test4(i8 %i, i8 %j) {
|
|
%tmp = sub i8 %i, %j ; <i8> [#uses=1]
|
|
%b = icmp eq i8 %tmp, 0 ; <i1> [#uses=1]
|
|
br label %1
|
|
unwind_to %1
|
|
ret i1 false
|
|
}
|
|
|
|
define void @test5() {
|
|
unwind
|
|
}
|
|
|
|
define void @test6() {
|
|
unwind: unwind_to %unwind
|
|
unwind
|
|
}
|