1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Correct the name of stosd for the AT&T syntax:

It's stosl (l for long == 32 bit).

llvm-svn: 17658
This commit is contained in:
John Criswell 2004-11-10 04:48:15 +00:00
parent b214a04a16
commit 402e338f11

View File

@ -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;