[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / CodeGen / AArch64 / sve-fixed-length-shuffles.ll
blob4e53128e1346908c9791e3d75a6943f0349b0279
1 ; RUN: llc -aarch64-sve-vector-bits-min=256 < %s | FileCheck %s
3 target triple = "aarch64-unknown-linux-gnu"
5 ; Currently there is no custom lowering for vector shuffles operating on types
6 ; bigger than NEON. However, having no support opens us up to a code generator
7 ; hang when expanding BUILD_VECTOR. Here we just validate the promblematic case
8 ; successfully exits code generation.
9 define void @hang_when_merging_stores_after_legalisation(<8 x i32>* %a, <2 x i32> %b) #0 {
10 ; CHECK-LABEL: hang_when_merging_stores_after_legalisation:
11   %splat = shufflevector <2 x i32> %b, <2 x i32> undef, <8 x i32> zeroinitializer
12   %interleaved.vec = shufflevector <8 x i32> %splat, <8 x i32> undef, <8 x i32> <i32 0, i32 4, i32 1, i32 5, i32 2, i32 6, i32 3, i32 7>
13   store <8 x i32> %interleaved.vec, <8 x i32>* %a, align 4
14   ret void
17 attributes #0 = { nounwind "target-features"="+sve" }