You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
211 B
16 lines
211 B
4 months ago
|
; RUN: not llvm-as < %s >& /dev/null
|
||
|
|
||
|
declare i32 @v()
|
||
|
|
||
|
define i32 @f() {
|
||
|
e:
|
||
|
%r = invoke i32 @v()
|
||
|
to label %c unwind label %u ; <i32> [#uses=2]
|
||
|
|
||
|
c: ; preds = %e
|
||
|
ret i32 %r
|
||
|
|
||
|
u: ; preds = %e
|
||
|
ret i32 %r
|
||
|
}
|