[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / Inline / simplified_to.ll
blob92c84b586800c6137449314268cbe0cccb87dacf
1 ; RUN: opt < %s -passes="print<inline-cost>" 2>&1 | FileCheck %s
3 ; CHECK-LABEL: @test()
4 ; CHECK: cost before = {{.*}}, cost after = {{.*}}, threshold before = {{.*}}, threshold after = {{.*}}, cost delta = {{.*}}, simplified to i1 false
5 ; CHECK:   %1 = icmp eq i32 4, 5
7 define i32 @test() {
8   %1 = icmp eq i32 4, 5
9   ret i32 0
12 define void @main() {
13   %1 = call i32 @test()
14   ret void