[llvm-commits] CVS: llvm/lib/Target/X86/X86InstrInfo.td

John Criswell criswell at cs.uiuc.edu
Tue Nov 9 20:48:29 PST 2004



Changes in directory llvm/lib/Target/X86:

X86InstrInfo.td updated: 1.111 -> 1.112
---
Log message:

Correct the name of stosd for the AT&T syntax:
It's stosl (l for long == 32 bit).


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Target/X86/X86InstrInfo.td
diff -u llvm/lib/Target/X86/X86InstrInfo.td:1.111 llvm/lib/Target/X86/X86InstrInfo.td:1.112
--- llvm/lib/Target/X86/X86InstrInfo.td:1.111	Wed Oct  6 09:31:50 2004
+++ llvm/lib/Target/X86/X86InstrInfo.td	Tue Nov  9 22:48:15 2004
@@ -248,7 +248,7 @@
                 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;
 
 






More information about the llvm-commits mailing list