blob: 8e8ef43932b2839ab78e3249fca2bfb2b8857b17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | not grep invoke
declare i32 @func(i8*) nounwind
define i32 @test() {
invoke i32 @func( i8* null ) nounwind
to label %Cont unwind label %Other ; <i32>:1 [#uses=0]
Cont: ; preds = %0
ret i32 0
Other: ; preds = %0
ret i32 1
}
|