mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Oops, can't unwind to the entry block (entry block may have no preds).
llvm-svn: 47808
This commit is contained in:
parent
112819e1e6
commit
07b03b3119
@ -13,6 +13,8 @@ target:
|
||||
}
|
||||
|
||||
define i1 @test2(i8 %i, i8 %j) {
|
||||
entry:
|
||||
br label %0
|
||||
unwind_to %1
|
||||
%tmp = sub i8 %i, %j ; <i8> [#uses=1]
|
||||
%b = icmp eq i8 %tmp, 0 ; <i1> [#uses=1]
|
||||
@ -22,6 +24,8 @@ unwind_to %1
|
||||
}
|
||||
|
||||
define i1 @test3(i8 %i, i8 %j) {
|
||||
entry:
|
||||
br label %0
|
||||
unwind_to %1
|
||||
%tmp = sub i8 %i, %j ; <i8> [#uses=1]
|
||||
%b = icmp eq i8 %tmp, 0 ; <i1> [#uses=1]
|
||||
@ -43,6 +47,8 @@ define void @test5() {
|
||||
}
|
||||
|
||||
define void @test6() {
|
||||
entry:
|
||||
br label %unwind
|
||||
unwind: unwind_to %unwind
|
||||
unwind
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user