AArch64/ARM64: remove AArch64 from tree prior to renaming ARM64.
[oota-llvm.git] / test / CodeGen / ARM64 / 2013-02-12-shufv8i8.ll
1 ; RUN: llc < %s -march=arm64 -arm64-neon-syntax=apple
2
3 ;CHECK-LABEL: Shuff:
4 ;CHECK: tbl.8b
5 ;CHECK: ret
6 define <8 x i8 > @Shuff(<8 x i8> %in, <8 x i8>* %out) nounwind ssp {
7   %value = shufflevector <8 x i8> %in, <8 x i8> zeroinitializer, <8 x i32> <i32 8, i32 9, i32 10, i32 11, i32 4, i32 5, i32 6, i32 7>
8   ret <8 x i8> %value
9 }
10
11