llvm-6502/test/Transforms/ADCE/dce_pure_call.ll

9 lines
177 B
LLVM
Raw Normal View History

; 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
}