forked from OSchip/llvm-project
parent
697617709c
commit
cff7b8a9ca
|
@ -0,0 +1,10 @@
|
|||
; RUN: not llvm-as < %s -o /dev/null -f
|
||||
; PR1042
|
||||
|
||||
int %foo() {
|
||||
%A = invoke int %foo( )
|
||||
to label %L unwind label %L ; <int> [#uses=1]
|
||||
|
||||
L: ; preds = %0, %0
|
||||
ret int %A
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
; RUN: not llvm-as < %s -o /dev/null -f
|
||||
; PR1042
|
||||
|
||||
int %foo() {
|
||||
br bool false, label %L1, label %L2
|
||||
L1:
|
||||
%A = invoke int %foo() to label %L unwind label %L
|
||||
|
||||
L2:
|
||||
br label %L
|
||||
L:
|
||||
ret int %A
|
||||
}
|
Loading…
Reference in New Issue