From: Simon Pilgrim Date: Fri, 12 Jul 2019 17:42:32 +0000 (+0000) Subject: [X86][AVX] Add PR34359 shuffle test case. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=969de6c407c46b1c2c067d855bbe1d50fe7fefed;p=llvm [X86][AVX] Add PR34359 shuffle test case. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@365926 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/vector-shuffle-256-v4.ll b/test/CodeGen/X86/vector-shuffle-256-v4.ll index 3603407f2b1..8fc0eabbcd2 100644 --- a/test/CodeGen/X86/vector-shuffle-256-v4.ll +++ b/test/CodeGen/X86/vector-shuffle-256-v4.ll @@ -752,6 +752,18 @@ define <4 x double> @shuffle_v4f64_1032_v2f64(<2 x double> %a, <2 x double> %b) ret <4 x double> %3 } +;PR34359 +define <4 x double> @shuffle_v4f64_2345_0567_select(<4 x double> %vec1, <4 x double> %vec2, <4 x double> %vec3) { +; ALL-LABEL: shuffle_v4f64_2345_0567_select: +; ALL: # %bb.0: +; ALL-NEXT: vperm2f128 {{.*#+}} ymm0 = ymm0[2,3],ymm1[0,1] +; ALL-NEXT: vblendps {{.*#+}} ymm0 = ymm2[0,1],ymm0[2,3,4,5,6,7] +; ALL-NEXT: retq + %shuf = shufflevector <4 x double> %vec1, <4 x double> %vec2, <4 x i32> + %res = select <4 x i1> , <4 x double> %shuf, <4 x double> %vec3 + ret <4 x double> %res +} + define <4 x i64> @shuffle_v4i64_0000(<4 x i64> %a, <4 x i64> %b) { ; AVX1-LABEL: shuffle_v4i64_0000: ; AVX1: # %bb.0: