[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / ADCE / dce_pure_call.ll
blob88e92bf13f49c60a1cfe6497f0f517c71e8d8a2b
1 ; RUN: opt -adce -S < %s | not grep call
3 declare i32 @strlen(i8*) readonly nounwind willreturn
5 define void @test() {
6         call i32 @strlen( i8* null )            ; <i32>:1 [#uses=0]
7         ret void