[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / Hexagon / isel-vlsr-v2i16.ll
blobbf176d042c12ade719cb548065421d49048bb787
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(ptr nocapture %v) nounwind {
9   %vec = load <2 x i32>, ptr %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" }