[test] Pre-commit llvm.experimental.memset.pattern tests prior to MemoryLocation...
[llvm-project.git] / llvm / test / CodeGen / Hexagon / autohvx / isel-setcc-v256i1.ll
blob60e0b4c14087b9c004f5fb52ed641bea063567bb
1 ; RUN: llc -mtriple=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" }