[llvm] r283076 - [X86][AVX2] Fix typo in test names
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 2 12:31:59 PDT 2016
Author: rksimon
Date: Sun Oct 2 14:31:58 2016
New Revision: 283076
URL: http://llvm.org/viewvc/llvm-project?rev=283076&view=rev
Log:
[X86][AVX2] Fix typo in test names
We are testing vpermps not vpermd
Modified:
llvm/trunk/test/CodeGen/X86/vector-shuffle-combining-avx2.ll
Modified: llvm/trunk/test/CodeGen/X86/vector-shuffle-combining-avx2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vector-shuffle-combining-avx2.ll?rev=283076&r1=283075&r2=283076&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/vector-shuffle-combining-avx2.ll (original)
+++ llvm/trunk/test/CodeGen/X86/vector-shuffle-combining-avx2.ll Sun Oct 2 14:31:58 2016
@@ -264,14 +264,14 @@ define <4 x float> @combine_pshufb_as_vp
ret <4 x float> %3
}
-define <8 x float> @combine_permd_as_vpbroadcastss256(<4 x float> %a) {
-; X32-LABEL: combine_permd_as_vpbroadcastss256:
+define <8 x float> @combine_permps_as_vpbroadcastss256(<4 x float> %a) {
+; X32-LABEL: combine_permps_as_vpbroadcastss256:
; X32: # BB#0:
; X32-NEXT: # kill: %XMM0<def> %XMM0<kill> %YMM0<def>
; X32-NEXT: vbroadcastss %xmm0, %ymm0
; X32-NEXT: retl
;
-; X64-LABEL: combine_permd_as_vpbroadcastss256:
+; X64-LABEL: combine_permps_as_vpbroadcastss256:
; X64: # BB#0:
; X64-NEXT: # kill: %XMM0<def> %XMM0<kill> %YMM0<def>
; X64-NEXT: vbroadcastss %xmm0, %ymm0
@@ -281,14 +281,14 @@ define <8 x float> @combine_permd_as_vpb
ret <8 x float> %2
}
-define <4 x double> @combine_permd_as_vpbroadcastsd256(<2 x double> %a) {
-; X32-LABEL: combine_permd_as_vpbroadcastsd256:
+define <4 x double> @combine_permps_as_vpbroadcastsd256(<2 x double> %a) {
+; X32-LABEL: combine_permps_as_vpbroadcastsd256:
; X32: # BB#0:
; X32-NEXT: # kill: %XMM0<def> %XMM0<kill> %YMM0<def>
; X32-NEXT: vbroadcastsd %xmm0, %ymm0
; X32-NEXT: retl
;
-; X64-LABEL: combine_permd_as_vpbroadcastsd256:
+; X64-LABEL: combine_permps_as_vpbroadcastsd256:
; X64: # BB#0:
; X64-NEXT: # kill: %XMM0<def> %XMM0<kill> %YMM0<def>
; X64-NEXT: vbroadcastsd %xmm0, %ymm0
More information about the llvm-commits
mailing list