Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / fadd.ll
blob1fdd3ca296094240750d0e8873bc885c5fd0fdbc
1 ; RUN: llc -march=hexagon -mcpu=hexagonv5  < %s | FileCheck %s
2 ; Check that we generate sp floating point add in V5.
4 ; CHECK: r{{[0-9]+}} = sfadd(r{{[0-9]+}},r{{[0-9]+}})
6 define i32 @main() nounwind {
7 entry:
8   %a = alloca float, align 4
9   %b = alloca float, align 4
10   %c = alloca float, align 4
11   store volatile float 0x402ECCCCC0000000, ptr %a, align 4
12   store volatile float 0x4022333340000000, ptr %b, align 4
13   %0 = load volatile float, ptr %a, align 4
14   %1 = load volatile float, ptr %b, align 4
15   %add = fadd float %0, %1
16   store float %add, ptr %c, align 4
17   ret i32 0