forked from OSchip/llvm-project
14 lines
257 B
LLVM
14 lines
257 B
LLVM
|
; RUN: llvm-upgrade < %s | llvm-as | 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
|
||
|
}
|
||
|
|