[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / Hexagon / fmul.ll
blobe20e293c0a137c06f79d37061f09da85d4a86121
1 ; RUN: llc -march=hexagon -mcpu=hexagonv5  < %s | FileCheck %s
2 ; Check that we generate single precision floating point multiply in V5.
4 ; CHECK: r{{[0-9]+}} = sfmpy(r{{[0-9]+}},r{{[0-9]+}})
7 define i32 @main() nounwind {
8 entry:
9   %a = alloca float, align 4
10   %b = alloca float, align 4
11   %c = alloca float, align 4
12   store volatile float 0x402ECCCCC0000000, float* %a, align 4
13   store volatile float 0x4022333340000000, float* %b, align 4
14   %0 = load volatile float, float* %b, align 4
15   %1 = load volatile float, float* %a, align 4
16   %mul = fmul float %0, %1
17   store float %mul, float* %c, align 4
18   ret i32 0