From: John Criswell Date: Wed, 10 Nov 2004 04:48:15 +0000 (+0000) Subject: Correct the name of stosd for the AT&T syntax: X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=546faca4ef788230905d11828701d6d3215ee133;p=oota-llvm.git Correct the name of stosd for the AT&T syntax: It's stosl (l for long == 32 bit). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17658 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 333474134a2..3d723fa75b4 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -248,7 +248,7 @@ def REP_STOSB : I<0xAA, RawFrm, (ops), "{rep;stosb|rep stosb}">, Imp<[AL,ECX,EDI], [ECX,EDI]>, REP; def REP_STOSW : I<0xAB, RawFrm, (ops), "{rep;stosw|rep stosw}">, Imp<[AX,ECX,EDI], [ECX,EDI]>, REP, OpSize; -def REP_STOSD : I<0xAB, RawFrm, (ops), "{rep;stosd|rep stosd}">, +def REP_STOSD : I<0xAB, RawFrm, (ops), "{rep;stosl|rep stosd}">, Imp<[EAX,ECX,EDI], [ECX,EDI]>, REP;