aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ADCE/dce_pure_call.ll
blob: 79a360c26803252200f866492c52dc7c61b3de19 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-upgrade < %s | llvm-as | 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
}