[llvm-branch-commits] [llvm-branch] r72544 - /llvm/branches/Apple/Bender/lib/Target/X86/X86InstrSSE.td

Bill Wendling isanbard at gmail.com
Thu May 28 15:14:22 PDT 2009


Author: void
Date: Thu May 28 17:14:22 2009
New Revision: 72544

URL: http://llvm.org/viewvc/llvm-project?rev=72544&view=rev
Log:
--- Merging r72535 into '.':
U    lib/Target/X86/X86InstrSSE.td

Fix MOVMSKPDrr encoding.

Modified:
    llvm/branches/Apple/Bender/lib/Target/X86/X86InstrSSE.td

Modified: llvm/branches/Apple/Bender/lib/Target/X86/X86InstrSSE.td
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Bender/lib/Target/X86/X86InstrSSE.td?rev=72544&r1=72543&r2=72544&view=diff

==============================================================================
--- llvm/branches/Apple/Bender/lib/Target/X86/X86InstrSSE.td (original)
+++ llvm/branches/Apple/Bender/lib/Target/X86/X86InstrSSE.td Thu May 28 17:14:22 2009
@@ -951,7 +951,7 @@
 def MOVMSKPSrr : PSI<0x50, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
                      "movmskps\t{$src, $dst|$dst, $src}",
                      [(set GR32:$dst, (int_x86_sse_movmsk_ps VR128:$src))]>;
-def MOVMSKPDrr : PSI<0x50, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
+def MOVMSKPDrr : PDI<0x50, MRMSrcReg, (outs GR32:$dst), (ins VR128:$src),
                      "movmskpd\t{$src, $dst|$dst, $src}",
                      [(set GR32:$dst, (int_x86_sse2_movmsk_pd VR128:$src))]>;
 





More information about the llvm-branch-commits mailing list