[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / Hexagon / isel-bitcast-v8i8-v4i16.ll
blobf45b1a77c6d7a802b3445c63b0000fa6d9c2c5c0
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Check that this doesn't fail to select instructions.
4 ; CHECK: vsplath
6 define <8 x i8> @fred(i16 %a0) #0 {
7   %t0 = insertelement <4 x i16> undef, i16 %a0, i32 0
8   %t1 = shufflevector <4 x i16> %t0, <4 x i16> undef, <4 x i32> zeroinitializer
9   %t2 = bitcast <4 x i16> %t1 to <8 x i8>
10   ret <8 x i8> %t2
13 attributes #0 = { readnone nounwind "target-cpu"="hexagonv62" }