[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / EarlyCSE / flags.ll
blob9d24ade7d3757693012a3b4c1118b7ded42dcf27
1 ; RUN: opt -early-cse -earlycse-debug-hash -S < %s | FileCheck %s
2 ; RUN: opt -basic-aa -early-cse-memssa -S < %s | FileCheck %s
4 declare void @use(i1)
6 define void @test1(float %x, float %y) {
7 entry:
8   %cmp1 = fcmp nnan oeq float %y, %x
9   %cmp2 = fcmp oeq float %x, %y
10   call void @use(i1 %cmp1)
11   call void @use(i1 %cmp2)
12   ret void
15 ; CHECK-LABEL: define void @test1(
16 ; CHECK: %[[cmp:.*]] = fcmp oeq float %y, %x
17 ; CHECK-NEXT: call void @use(i1 %[[cmp]])
18 ; CHECK-NEXT: call void @use(i1 %[[cmp]])
19 ; CHECK-NEXT: ret void