Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / autohvx / isel-concat-vectors-bool.ll
blob73ac65f7e147f772c14bdcc5ab20919d36f98589
1 ; RUN: llc -march=hexagon -verify-machineinstrs < %s | FileCheck %s
3 ; Check for successful compilation.
4 ; CHECK: sfcmp
6 target datalayout = "e-m:e-p:32:32:32-a:0-n16:32-i64:64:64-i32:32:32-i16:16:16-i1:8:8-f32:32:32-f64:64:64-v32:32:32-v64:64:64-v512:512:512-v1024:1024:1024-v2048:2048:2048"
7 target triple = "hexagon"
9 @g0 = global <8 x i32> zeroinitializer, align 8
11 define void @fred(ptr %a0, ptr %a1) #0 {
12 b0:
13   %v0 = load <8 x float>, ptr %a1, align 8
14   %v1 = fcmp olt <8 x float> %v0, zeroinitializer
15   %v2 = load <8 x float>, ptr %a0, align 8
16   %v3 = fcmp olt <8 x float> %v2, zeroinitializer
17   %v4 = and <8 x i1> %v1, %v3
18   %v5 = zext <8 x i1> %v4 to <8 x i32>
19   store <8 x i32> %v5, ptr @g0, align 8
20   ret void
23 attributes #0 = { noinline norecurse nounwind "target-cpu"="hexagonv60" "target-features"="+hvx-length64b,+hvxv60" }