[llvm] r354361 - Fix stupid assembly comment typo
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 19 09:57:37 PST 2019
Author: rksimon
Date: Tue Feb 19 09:57:36 2019
New Revision: 354361
URL: http://llvm.org/viewvc/llvm-project?rev=354361&view=rev
Log:
Fix stupid assembly comment typo
Modified:
llvm/trunk/test/CodeGen/X86/commute-blend-sse41.ll
Modified: llvm/trunk/test/CodeGen/X86/commute-blend-sse41.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/commute-blend-sse41.ll?rev=354361&r1=354360&r2=354361&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/commute-blend-sse41.ll (original)
+++ llvm/trunk/test/CodeGen/X86/commute-blend-sse41.ll Tue Feb 19 09:57:36 2019
@@ -37,11 +37,11 @@ declare <2 x double> @llvm.x86.sse41.ble
define <4 x i32> @commute_fold_blend_v4i32(<4 x i32>* %a, <4 x i32> %b) {
; CHECK-LABEL: commute_fold_blend_v4i32:
; CHECK: # %bb.0:
-; CHECK-NEXT: paddd %xmm0, %xmm0 ; force integer domain
+; CHECK-NEXT: paddd %xmm0, %xmm0
; CHECK-NEXT: pblendw {{.*#+}} xmm0 = mem[0,1,2,3,4,5],xmm0[6,7]
; CHECK-NEXT: retq
%1 = load <4 x i32>, <4 x i32>* %a
- %2 = add <4 x i32> %b, %b
+ %2 = add <4 x i32> %b, %b ; force integer domain
%3 = shufflevector <4 x i32> %1, <4 x i32> %2, <4 x i32> <i32 0, i32 1, i32 2, i32 7>
ret <4 x i32> %3
}
More information about the llvm-commits
mailing list