mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00: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
|
||
|
}
|
||
|
|