[llvm] r260852 - [X86][AVX] Fixed copy+paste typo in shuffle test
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 14 10:11:52 PST 2016
Author: rksimon
Date: Sun Feb 14 12:11:52 2016
New Revision: 260852
URL: http://llvm.org/viewvc/llvm-project?rev=260852&view=rev
Log:
[X86][AVX] Fixed copy+paste typo in shuffle test
Modified:
llvm/trunk/test/CodeGen/X86/vector-shuffle-256-v8.ll
Modified: llvm/trunk/test/CodeGen/X86/vector-shuffle-256-v8.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vector-shuffle-256-v8.ll?rev=260852&r1=260851&r2=260852&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vector-shuffle-256-v8.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vector-shuffle-256-v8.ll Sun Feb 14 12:11:52 2016
@@ -784,10 +784,10 @@ define <8 x float> @shuffle_v8f32_ba9876
define <8 x float> @shuffle_v8f32_ba983210(<8 x float> %a, <8 x float> %b) {
; ALL-LABEL: shuffle_v8f32_ba983210:
; ALL: # BB#0:
-; ALL-NEXT: vblendpd {{.*#+}} ymm0 = ymm1[0,1],ymm0[2,3]
+; ALL-NEXT: vinsertf128 $1, %xmm0, %ymm1, %ymm0
; ALL-NEXT: vpermilps {{.*#+}} ymm0 = ymm0[3,2,1,0,7,6,5,4]
; ALL-NEXT: retq
- %shuffle = shufflevector <8 x float> %a, <8 x float> %b, <8 x i32> <i32 11, i32 10, i32 9, i32 8, i32 7, i32 6, i32 5, i32 4>
+ %shuffle = shufflevector <8 x float> %a, <8 x float> %b, <8 x i32> <i32 11, i32 10, i32 9, i32 8, i32 3, i32 2, i32 1, i32 0>
ret <8 x float> %shuffle
}
More information about the llvm-commits
mailing list