From: Simon Pilgrim Date: Thu, 14 Jul 2016 13:40:53 +0000 (+0000) Subject: [X86][AVX] Added an additional vperm2f128 memory folding test X-Git-Tag: llvmorg-3.9.0-rc1~460 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bed37ccd547cc47ff4c87e9e36f5ae8940dd8e17;p=platform%2Fupstream%2Fllvm.git [X86][AVX] Added an additional vperm2f128 memory folding test llvm-svn: 275413 --- diff --git a/llvm/test/CodeGen/X86/avx-vperm2x128.ll b/llvm/test/CodeGen/X86/avx-vperm2x128.ll index 7989cd1..740fd77 100644 --- a/llvm/test/CodeGen/X86/avx-vperm2x128.ll +++ b/llvm/test/CodeGen/X86/avx-vperm2x128.ll @@ -77,6 +77,18 @@ entry: ret <8 x float> %shuffle } +define <8 x float> @shuffle_v8f32_45674567_mem(<8 x float>* %pa, <8 x float>* %pb) nounwind uwtable readnone ssp { +; ALL-LABEL: shuffle_v8f32_45674567_mem: +; ALL: ## BB#0: ## %entry +; ALL-NEXT: vperm2f128 {{.*#+}} ymm0 = mem[2,3,2,3] +; ALL-NEXT: retq +entry: + %a = load <8 x float>, <8 x float>* %pa + %b = load <8 x float>, <8 x float>* %pb + %shuffle = shufflevector <8 x float> %a, <8 x float> %b, <8 x i32> + ret <8 x float> %shuffle +} + define <32 x i8> @shuffle_v32i8_2323(<32 x i8> %a, <32 x i8> %b) nounwind uwtable readnone ssp { ; ALL-LABEL: shuffle_v32i8_2323: ; ALL: ## BB#0: ## %entry