[pypy-svn] r62891 - pypy/branch/pyjitpl5/pypy/jit/backend/x86

arigo at codespeak.net arigo at codespeak.net
Thu Mar 12 16:13:52 CET 2009


Author: arigo
Date: Thu Mar 12 16:13:51 2009
New Revision: 62891

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/x86/runner.py
Log:
Finish fixing the x86 backend for the previous checkin.


Modified: pypy/branch/pyjitpl5/pypy/jit/backend/x86/runner.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/x86/runner.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/x86/runner.py	Thu Mar 12 16:13:51 2009
@@ -37,6 +37,8 @@
                 l.append(i)
         return tuple(l)
 
+    def sort_key(self):
+        return self.v[0]    # the ofs field for fielddescrs
 
     def __hash__(self):
         return hash(self._v())



More information about the Pypy-commit mailing list