[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / Hexagon / autohvx / isel-setcc-v256i1.ll
blobb0fbb1ceaf0f0e76f8d0f757d60ed5f81eb758f5
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Check that this doesn't crash. The select should be broken up into two
4 ; vmux instructions.
6 ; CHECK-LABEL: foo:
7 ; CHECK: vmux
8 ; CHECK: vmux
9 define <256 x i8> @foo(<256 x i8> %a0, <256 x i8> %a1) #0 {
10   %v0 = icmp slt <256 x i8> %a0, zeroinitializer
11   %v1 = select <256 x i1> %v0, <256 x i8> %a1, <256 x i8> %a0
12   ret <256 x i8> %v1
15 attributes #0 = { "target-cpu"="hexagonv62" "target-features"="+hvx,+hvx-length128b" }