Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / autohvx / isel-widen-store.ll
blob500451e9c4ec03aebaddbdfeb8df661883391aad
1 ; RUN: llc -march=hexagon -hexagon-hvx-widen=16 < %s | FileCheck %s
3 ; CHECK-LABEL: f0:
4 ; CHECK: q[[Q0:[0-3]]] = vsetq(r{{[0-9]+}})
5 ; CHECK: if (q[[Q0]]) vmem({{.*}}) = v
6 define void @f0(ptr %a0) #0 {
7   %v0 = load <32 x i8>, ptr %a0, align 128
8   %v1 = insertelement <32 x i8> undef, i8 1, i32 0
9   %v2 = shufflevector <32 x i8> %v1, <32 x i8> undef, <32 x i32> zeroinitializer
10   %v3 = add <32 x i8> %v0, %v2
11   store <32 x i8> %v3, ptr %a0, align 128
12   ret void
15 attributes #0 = { nounwind "target-cpu"="hexagonv65" "target-features"="+hvx,+hvx-length128b" }