From: Simon Pilgrim Date: Tue, 19 Feb 2019 17:57:36 +0000 (+0000) Subject: Fix stupid assembly comment typo X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed9ed6effdbddff8fe6d149cb2f9d8f8a8aa3e1e;p=llvm Fix stupid assembly comment typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@354361 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/commute-blend-sse41.ll b/test/CodeGen/X86/commute-blend-sse41.ll index c0197232688..5d64540dfb0 100644 --- a/test/CodeGen/X86/commute-blend-sse41.ll +++ b/test/CodeGen/X86/commute-blend-sse41.ll @@ -37,11 +37,11 @@ declare <2 x double> @llvm.x86.sse41.blendpd(<2 x double>, <2 x double>, i8) nou 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> ret <4 x i32> %3 }