diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-02-14 18:11:52 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-02-14 18:11:52 +0000 |
| commit | 834931554b1b4b71c205dd1014c2e671ae2380e5 (patch) | |
| tree | 067c782ca95b19d86c691af046061e0d88782feb /llvm/test/CodeGen/X86/vector-shuffle-256-v8.ll | |
| parent | 6090739f8d92df046b4e0d64add0604477e8cb0a (diff) | |
| download | bcm5719-llvm-834931554b1b4b71c205dd1014c2e671ae2380e5.tar.gz bcm5719-llvm-834931554b1b4b71c205dd1014c2e671ae2380e5.zip | |
[X86][AVX] Fixed copy+paste typo in shuffle test
llvm-svn: 260852
Diffstat (limited to 'llvm/test/CodeGen/X86/vector-shuffle-256-v8.ll')
| -rw-r--r-- | llvm/test/CodeGen/X86/vector-shuffle-256-v8.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/vector-shuffle-256-v8.ll b/llvm/test/CodeGen/X86/vector-shuffle-256-v8.ll index dfd03d32453..c554fb5150a 100644 --- a/llvm/test/CodeGen/X86/vector-shuffle-256-v8.ll +++ b/llvm/test/CodeGen/X86/vector-shuffle-256-v8.ll @@ -784,10 +784,10 @@ define <8 x float> @shuffle_v8f32_ba987654(<8 x float> %a, <8 x float> %b) { 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 } |

