[llvm] r275992 - [X86][AVX] Fixed typo in test names
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 19 09:52:06 PDT 2016
Author: rksimon
Date: Tue Jul 19 11:52:05 2016
New Revision: 275992
URL: http://llvm.org/viewvc/llvm-project?rev=275992&view=rev
Log:
[X86][AVX] Fixed typo in test names
Modified:
llvm/trunk/test/CodeGen/X86/avx-vbroadcastf128.ll
llvm/trunk/test/CodeGen/X86/avx2-vbroadcasti128.ll
Modified: llvm/trunk/test/CodeGen/X86/avx-vbroadcastf128.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/avx-vbroadcastf128.ll?rev=275992&r1=275991&r2=275992&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/avx-vbroadcastf128.ll (original)
+++ llvm/trunk/test/CodeGen/X86/avx-vbroadcastf128.ll Tue Jul 19 11:52:05 2016
@@ -92,15 +92,15 @@ define <16 x i16> @test_broadcast_8i16_1
ret <16 x i16> %2
}
-define <32 x i8> @test_broadcast_16i8_32i7(<16 x i8> *%p) nounwind {
-; X32-LABEL: test_broadcast_16i8_32i7:
+define <32 x i8> @test_broadcast_16i8_32i8(<16 x i8> *%p) nounwind {
+; X32-LABEL: test_broadcast_16i8_32i8:
; X32: ## BB#0:
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
; X32-NEXT: vmovaps (%eax), %xmm0
; X32-NEXT: vinsertf128 $1, %xmm0, %ymm0, %ymm0
; X32-NEXT: retl
;
-; X64-LABEL: test_broadcast_16i8_32i7:
+; X64-LABEL: test_broadcast_16i8_32i8:
; X64: ## BB#0:
; X64-NEXT: vmovaps (%rdi), %xmm0
; X64-NEXT: vinsertf128 $1, %xmm0, %ymm0, %ymm0
Modified: llvm/trunk/test/CodeGen/X86/avx2-vbroadcasti128.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/avx2-vbroadcasti128.ll?rev=275992&r1=275991&r2=275992&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/avx2-vbroadcasti128.ll (original)
+++ llvm/trunk/test/CodeGen/X86/avx2-vbroadcasti128.ll Tue Jul 19 11:52:05 2016
@@ -107,8 +107,8 @@ define <16 x i16> @test_broadcast_8i16_1
ret <16 x i16> %3
}
-define <32 x i8> @test_broadcast_16i8_32i7(<16 x i8> *%p) nounwind {
-; X32-LABEL: test_broadcast_16i8_32i7:
+define <32 x i8> @test_broadcast_16i8_32i8(<16 x i8> *%p) nounwind {
+; X32-LABEL: test_broadcast_16i8_32i8:
; X32: ## BB#0:
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
; X32-NEXT: vmovdqa (%eax), %xmm0
@@ -116,7 +116,7 @@ define <32 x i8> @test_broadcast_16i8_32
; X32-NEXT: vpaddb LCPI5_0, %ymm0, %ymm0
; X32-NEXT: retl
;
-; X64-LABEL: test_broadcast_16i8_32i7:
+; X64-LABEL: test_broadcast_16i8_32i8:
; X64: ## BB#0:
; X64-NEXT: vmovdqa (%rdi), %xmm0
; X64-NEXT: vinserti128 $1, %xmm0, %ymm0, %ymm0
More information about the llvm-commits
mailing list