aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/ADCE/dce_pure_call.ll
blob: b76ccc5e6299d628e151b1ee66e9a0a8d5affbd8 (plain)
1
2
3
4
5
6
7
8
; RUN: opt %s -adce | llvm-dis | not grep call

declare i32 @strlen(i8*) readonly nounwind

define void @test() {
	call i32 @strlen( i8* null )		; <i32>:1 [#uses=0]
	ret void
}