[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / EarlyCSE / flags.ll
blob41ad20cf57c95b83cb53b198ad7a1d82e7258fb1
1 ; RUN: opt -early-cse -S < %s | FileCheck %s
2 ; RUN: opt -basicaa -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