[pypy-svn] r53215 - pypy/branch/jit-hotpath/pypy/jit/codegen/i386

fijal at codespeak.net fijal at codespeak.net
Mon Mar 31 23:11:44 CEST 2008


Author: fijal
Date: Mon Mar 31 23:11:44 2008
New Revision: 53215

Modified:
   pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py
Log:
FILD instruction


Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/i386/ri386setup.py	Mon Mar 31 23:11:44 2008
@@ -483,6 +483,9 @@
 FISTP = Instruction()
 FISTP.mode1(MODRM, ['\xDB', orbyte(3<<3), modrm(1)])
 
+FILD = Instruction()
+FILD.mode1(MODRM, ['\xDB', orbyte(0<<3), modrm(1)])
+
 # ------------------------- end of floating point ------------------------
 
 UD2 = Instruction()      # reserved as an illegal instruction



More information about the Pypy-commit mailing list