diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-10-02 19:31:58 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-10-02 19:31:58 +0000 |
| commit | b5200971d6fe0e8da7459501b61ae46ca577c5b3 (patch) | |
| tree | 667e2251c8e4ddc889df6e3ad593075829fbfecc | |
| parent | 9fbdfd1785369b90b0efa1e0748a0ac4454c19c5 (diff) | |
| download | bcm5719-llvm-b5200971d6fe0e8da7459501b61ae46ca577c5b3.tar.gz bcm5719-llvm-b5200971d6fe0e8da7459501b61ae46ca577c5b3.zip | |
[X86][AVX2] Fix typo in test names
We are testing vpermps not vpermd
llvm-svn: 283076
| -rw-r--r-- | llvm/test/CodeGen/X86/vector-shuffle-combining-avx2.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/X86/vector-shuffle-combining-avx2.ll b/llvm/test/CodeGen/X86/vector-shuffle-combining-avx2.ll index cae996d915d..bea9c4adbdd 100644 --- a/llvm/test/CodeGen/X86/vector-shuffle-combining-avx2.ll +++ b/llvm/test/CodeGen/X86/vector-shuffle-combining-avx2.ll @@ -264,14 +264,14 @@ define <4 x float> @combine_pshufb_as_vpbroadcastss128(<4 x float> %a) { 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_vpbroadcastss256(<4 x float> %a) { 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 |

