aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-06-02 21:09:10 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-06-02 21:09:10 +0000
commit94b1453278f0e136e5bca62fb631953f434af254 (patch)
tree9cd9002d7dd08a4a77e1a790d79fa570602ec9bf /lib/Target/X86
parentabdbae7bd3af228f394e7f27e67899a493f36c1e (diff)
downloadexternal_llvm-94b1453278f0e136e5bca62fb631953f434af254.zip
external_llvm-94b1453278f0e136e5bca62fb631953f434af254.tar.gz
external_llvm-94b1453278f0e136e5bca62fb631953f434af254.tar.bz2
Incorrect AT&T opcode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28666 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86')
-rw-r--r--lib/Target/X86/X86InstrInfo.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td
index bc2fc70..97f6d9f 100644
--- a/lib/Target/X86/X86InstrInfo.td
+++ b/lib/Target/X86/X86InstrInfo.td
@@ -523,7 +523,7 @@ def REP_MOVSB : I<0xA4, RawFrm, (ops), "{rep;movsb|rep movsb}",
def REP_MOVSW : I<0xA5, RawFrm, (ops), "{rep;movsw|rep movsw}",
[(X86rep_movs i16)]>,
Imp<[ECX,EDI,ESI], [ECX,EDI,ESI]>, REP, OpSize;
-def REP_MOVSD : I<0xA5, RawFrm, (ops), "{rep;movsd|rep movsd}",
+def REP_MOVSD : I<0xA5, RawFrm, (ops), "{rep;movsl|rep movsd}",
[(X86rep_movs i32)]>,
Imp<[ECX,EDI,ESI], [ECX,EDI,ESI]>, REP;