From e1bb13d67aef637c180ef15193e59d653debad54 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Wed, 24 Feb 2016 11:39:13 +0000 Subject: [PATCH] [X86][SSE] Fixed vector rotation test name typo Rotation of 16i6 vector not 8i16 vector - copy+paste is not your friend llvm-svn: 261733 --- llvm/test/CodeGen/X86/vector-rotate-256.ll | 10 +++++----- 1 file 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 379b5fc..2706b08 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 -- 2.7.4