mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
6ec98952e0
exceptions, so don't turn invokes of them into calls. llvm-svn: 44278
16 lines
329 B
LLVM
16 lines
329 B
LLVM
; RUN: llvm-as < %s | opt -adce | llvm-dis | grep null
|
|
|
|
declare i32 @strlen(i8*) readnone
|
|
|
|
define i32 @test() {
|
|
; invoke of pure function should not be deleted!
|
|
invoke i32 @strlen( i8* null ) readnone
|
|
to label %Cont unwind label %Other ; <i32>:1 [#uses=0]
|
|
|
|
Cont: ; preds = %0
|
|
ret i32 0
|
|
|
|
Other: ; preds = %0
|
|
ret i32 1
|
|
}
|