From: Dan Gohman Date: Mon, 21 Apr 2008 19:52:29 +0000 (+0000) Subject: Fix the encoding of the MMX movd that moves from MMX to 64-bit GPR. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0416b0a26d6fe7b1a8b7b8987164d0fd398bbee1;p=oota-llvm.git Fix the encoding of the MMX movd that moves from MMX to 64-bit GPR. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50053 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrMMX.td b/lib/Target/X86/X86InstrMMX.td index be07fa7ae58..35c7b904099 100644 --- a/lib/Target/X86/X86InstrMMX.td +++ b/lib/Target/X86/X86InstrMMX.td @@ -167,7 +167,7 @@ def MMX_MOVD64to64rr : MMXRI<0x6E, MRMSrcReg, (outs VR64:$dst), (ins GR64:$src), "movd\t{$src, $dst|$dst, $src}", []>; let neverHasSideEffects = 1 in -def MMX_MOVD64from64rr : MMXRI<0x6E, MRMSrcReg, (outs GR64:$dst), (ins VR64:$src), +def MMX_MOVD64from64rr : MMXRI<0x7E, MRMSrcReg, (outs GR64:$dst), (ins VR64:$src), "movd\t{$src, $dst|$dst, $src}", []>; let neverHasSideEffects = 1 in