mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
1b0feb42e2
use them. llvm-svn: 44403
15 lines
279 B
LLVM
15 lines
279 B
LLVM
; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep invoke
|
|
|
|
declare i32 @func(i8*) nounwind
|
|
|
|
define i32 @test() {
|
|
invoke i32 @func( i8* null )
|
|
to label %Cont unwind label %Other ; <i32>:1 [#uses=0]
|
|
|
|
Cont: ; preds = %0
|
|
ret i32 0
|
|
|
|
Other: ; preds = %0
|
|
ret i32 1
|
|
}
|