[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / Hexagon / isel-vlsr-v2i16.ll
blob995ce06129d810d9d69a34dff8b6943a1ab3f1a6
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; This used to crash with "cannot select" error.
4 ; CHECK: vlsrh(r1:0,#4)
6 target triple = "hexagon-unknown-linux-gnu"
8 define <2 x i16> @foo(<2 x i32>* nocapture %v) nounwind {
9   %vec = load <2 x i32>, <2 x i32>* %v, align 8
10   %trunc = trunc <2 x i32> %vec to <2 x i16>
11   %r = lshr <2 x i16> %trunc, <i16 4, i16 4>
12   ret <2 x i16> %r
15 attributes #0 = { nounwind "target-cpu"="hexagonv60" }