Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / fmadd.ll
blob06333bfc4c1675f99230b30c37454b2f4f70e428
1 ; RUN: llc -march=hexagon -fp-contract=fast < %s | FileCheck %s
3 @g0 = global float 0.000000e+00, align 4
4 @g1 = global float 1.000000e+00, align 4
5 @g2 = global float 2.000000e+00, align 4
7 ; CHECK: r{{[0-9]+}} += sfmpy(r{{[0-9]+}},r{{[0-9]+}})
8 define void @f0() #0 {
9 b0:
10   %v0 = load float, ptr @g0, align 4
11   %v1 = load float, ptr @g1, align 4
12   %v2 = load float, ptr @g2, align 4
13   %v3 = alloca float, align 4
14   %v4 = fmul float %v0, %v1
15   %v5 = fadd float %v2, %v4
16   store float %v5, ptr %v3, align 4
17   ret void
20 attributes #0 = { nounwind "target-cpu"="hexagonv55" }