[llvm] r270767 - [X86][SSE41] Removed pblendw intrinsics tests - they are auto-upgraded
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Wed May 25 14:27:59 PDT 2016
Author: rksimon
Date: Wed May 25 16:27:58 2016
New Revision: 270767
URL: http://llvm.org/viewvc/llvm-project?rev=270767&view=rev
Log:
[X86][SSE41] Removed pblendw intrinsics tests - they are auto-upgraded
Equivalent tests included in sse41-intrinsics-x86-upgrade.ll - the i8/i32 immediate diff doesn't matter anymore
Modified:
llvm/trunk/test/CodeGen/X86/sse41-intrinsics-x86.ll
Modified: llvm/trunk/test/CodeGen/X86/sse41-intrinsics-x86.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/sse41-intrinsics-x86.ll?rev=270767&r1=270766&r2=270767&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/sse41-intrinsics-x86.ll (original)
+++ llvm/trunk/test/CodeGen/X86/sse41-intrinsics-x86.ll Wed May 25 16:27:58 2016
@@ -140,22 +140,6 @@ define <16 x i8> @test_x86_sse41_pblendv
declare <16 x i8> @llvm.x86.sse41.pblendvb(<16 x i8>, <16 x i8>, <16 x i8>) nounwind readnone
-define <8 x i16> @test_x86_sse41_pblendw(<8 x i16> %a0, <8 x i16> %a1) {
-; SSE41-LABEL: test_x86_sse41_pblendw:
-; SSE41: ## BB#0:
-; SSE41-NEXT: pblendw {{.*#+}} xmm0 = xmm1[0,1,2],xmm0[3,4,5,6,7]
-; SSE41-NEXT: retl
-;
-; KNL-LABEL: test_x86_sse41_pblendw:
-; KNL: ## BB#0:
-; KNL-NEXT: vpblendw {{.*#+}} xmm0 = xmm1[0,1,2],xmm0[3,4,5,6,7]
-; KNL-NEXT: retl
- %res = call <8 x i16> @llvm.x86.sse41.pblendw(<8 x i16> %a0, <8 x i16> %a1, i8 7) ; <<8 x i16>> [#uses=1]
- ret <8 x i16> %res
-}
-declare <8 x i16> @llvm.x86.sse41.pblendw(<8 x i16>, <8 x i16>, i8) nounwind readnone
-
-
define <8 x i16> @test_x86_sse41_phminposuw(<8 x i16> %a0) {
; SSE41-LABEL: test_x86_sse41_phminposuw:
; SSE41: ## BB#0:
More information about the llvm-commits
mailing list