blob: dad2912702de6cb7d16000d99881ef824ce7213e [file] [log] [blame]
; RUN: llvm-as < %s | opt -adce | llvm-dis | not grep call
declare int %strlen(sbyte*)
void %test() {
;; Dead call should be deleted!
call int %strlen(sbyte *null)
ret void
}