mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
f4fe76d46b
invoke results (see the testcases). Tighten up the checking. llvm-svn: 72586
16 lines
211 B
LLVM
16 lines
211 B
LLVM
; 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
|
|
}
|