mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
14 lines
242 B
LLVM
14 lines
242 B
LLVM
|
; RUN: llvm-as < %s | opt -adce | llvm-dis | not grep null
|
||
|
|
||
|
declare int %strlen(sbyte*)
|
||
|
|
||
|
int %test() {
|
||
|
;; Dead call should be deleted!
|
||
|
invoke int %strlen(sbyte *null) to label %Cont unwind label %Other
|
||
|
Cont:
|
||
|
ret int 0
|
||
|
Other:
|
||
|
ret int 1
|
||
|
}
|
||
|
|