[pypy-svn] r51080 - pypy/dist/pypy/jit/codegen/i386

fijal at codespeak.net fijal at codespeak.net
Sun Jan 27 13:37:28 CET 2008


Author: fijal
Date: Sun Jan 27 13:37:28 2008
New Revision: 51080

Modified:
   pypy/dist/pypy/jit/codegen/i386/ri386.py
Log:
Forgotten checkin.


Modified: pypy/dist/pypy/jit/codegen/i386/ri386.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/i386/ri386.py	(original)
+++ pypy/dist/pypy/jit/codegen/i386/ri386.py	Sun Jan 27 13:37:28 2008
@@ -247,6 +247,9 @@
 def mem(basereg, offset=0):
     return memSIB(basereg, None, 0, offset)
 
+def mem64(basereg, offset=0):
+    return memSIB64(basereg, None, 0, offset)
+
 def memSIB(base, index, scaleshift, offset):
     return _SIBencode(MODRM, base, index, scaleshift, offset)
 



More information about the Pypy-commit mailing list