[llvm-commits] [llvm] r61228 - /llvm/trunk/test/CodeGen/X86/pmul.ll
Mon P Wang
wangmp at apple.com
Thu Dec 18 15:42:38 PST 2008
Author: wangmp
Date: Thu Dec 18 17:42:37 2008
New Revision: 61228
URL: http://llvm.org/viewvc/llvm-project?rev=61228&view=rev
Log:
Fix test to account for generating some vector code for mul v2i64 instead
of incorrectly generating pmuldq
Modified:
llvm/trunk/test/CodeGen/X86/pmul.ll
Modified: llvm/trunk/test/CodeGen/X86/pmul.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/pmul.ll?rev=61228&r1=61227&r2=61228&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/pmul.ll (original)
+++ llvm/trunk/test/CodeGen/X86/pmul.ll Thu Dec 18 17:42:37 2008
@@ -1,6 +1,6 @@
; RUN: llvm-as < %s | llc -march=x86 -mattr=sse41 -stack-alignment=16 > %t
-; RUN: grep pmul %t | count 6
-; RUN: grep mov %t | count 8
+; RUN: grep pmul %t | count 12
+; RUN: grep mov %t | count 19
define <4 x i32> @a(<4 x i32> %i) nounwind {
%A = mul <4 x i32> %i, < i32 117, i32 117, i32 117, i32 117 >
More information about the llvm-commits
mailing list