diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-02-24 11:39:13 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-02-24 11:39:13 +0000 |
| commit | e1bb13d67aef637c180ef15193e59d653debad54 (patch) | |
| tree | bfbd594fabdcc4283bc557f4a5dfce9e01324d1d /llvm | |
| parent | 3c728e43aa21cf5260d61be5e033eb483f912abc (diff) | |
| download | bcm5719-llvm-e1bb13d67aef637c180ef15193e59d653debad54.tar.gz bcm5719-llvm-e1bb13d67aef637c180ef15193e59d653debad54.zip | |
[X86][SSE] Fixed vector rotation test name typo
Rotation of 16i6 vector not 8i16 vector - copy+paste is not your friend
llvm-svn: 261733
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/CodeGen/X86/vector-rotate-256.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/vector-rotate-256.ll b/llvm/test/CodeGen/X86/vector-rotate-256.ll index 379b5fcb635..2706b0805f9 100644 --- a/llvm/test/CodeGen/X86/vector-rotate-256.ll +++ b/llvm/test/CodeGen/X86/vector-rotate-256.ll @@ -498,8 +498,8 @@ define <8 x i32> @constant_rotate_v8i32(<8 x i32> %a) nounwind { ret <8 x i32> %or } -define <16 x i16> @constant_rotate_v8i16(<16 x i16> %a) nounwind { -; AVX1-LABEL: constant_rotate_v8i16: +define <16 x i16> @constant_rotate_v16i16(<16 x i16> %a) nounwind { +; AVX1-LABEL: constant_rotate_v16i16: ; AVX1: # BB#0: ; AVX1-NEXT: vpmullw {{.*}}(%rip), %xmm0, %xmm1 ; AVX1-NEXT: vextractf128 $1, %ymm0, %xmm2 @@ -533,7 +533,7 @@ define <16 x i16> @constant_rotate_v8i16(<16 x i16> %a) nounwind { ; AVX1-NEXT: vorps %ymm0, %ymm1, %ymm0 ; AVX1-NEXT: retq ; -; AVX2-LABEL: constant_rotate_v8i16: +; AVX2-LABEL: constant_rotate_v16i16: ; AVX2: # BB#0: ; AVX2-NEXT: vpmullw {{.*}}(%rip), %ymm0, %ymm1 ; AVX2-NEXT: vpxor %ymm2, %ymm2, %ymm2 @@ -550,7 +550,7 @@ define <16 x i16> @constant_rotate_v8i16(<16 x i16> %a) nounwind { ; AVX2-NEXT: vpor %ymm0, %ymm1, %ymm0 ; AVX2-NEXT: retq ; -; XOPAVX1-LABEL: constant_rotate_v8i16: +; XOPAVX1-LABEL: constant_rotate_v16i16: ; XOPAVX1: # BB#0: ; XOPAVX1-NEXT: vpshlw {{.*}}(%rip), %xmm0, %xmm1 ; XOPAVX1-NEXT: vextractf128 $1, %ymm0, %xmm2 @@ -565,7 +565,7 @@ define <16 x i16> @constant_rotate_v8i16(<16 x i16> %a) nounwind { ; XOPAVX1-NEXT: vorps %ymm0, %ymm1, %ymm0 ; XOPAVX1-NEXT: retq ; -; XOPAVX2-LABEL: constant_rotate_v8i16: +; XOPAVX2-LABEL: constant_rotate_v16i16: ; XOPAVX2: # BB#0: ; XOPAVX2-NEXT: vpmullw {{.*}}(%rip), %ymm0, %ymm1 ; XOPAVX2-NEXT: vpxor %xmm2, %xmm2, %xmm2 |

