[llvm-commits] [llvm] r100736 - /llvm/trunk/lib/Target/X86/X86InstrSSE.td
Eric Christopher
echristo at apple.com
Wed Apr 7 17:52:02 PDT 2010
Author: echristo
Date: Wed Apr 7 19:52:02 2010
New Revision: 100736
URL: http://llvm.org/viewvc/llvm-project?rev=100736&view=rev
Log:
mpsadbw is not commutative.
Fixes PR3440.
Modified:
llvm/trunk/lib/Target/X86/X86InstrSSE.td
Modified: llvm/trunk/lib/Target/X86/X86InstrSSE.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrSSE.td?rev=100736&r1=100735&r2=100736&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrSSE.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrSSE.td Wed Apr 7 19:52:02 2010
@@ -3510,7 +3510,7 @@
defm DPPD : SS41I_binop_rmi_int<0x41, "dppd",
int_x86_sse41_dppd, 1>;
defm MPSADBW : SS41I_binop_rmi_int<0x42, "mpsadbw",
- int_x86_sse41_mpsadbw, 1>;
+ int_x86_sse41_mpsadbw, 0>;
/// SS41I_ternary_int - SSE 4.1 ternary operator
More information about the llvm-commits
mailing list