[pypy-svn] r75053 - pypy/branch/x86-64-jit-backend/pypy/jit/backend/x86

jcreigh at codespeak.net jcreigh at codespeak.net
Thu Jun 3 16:48:49 CEST 2010


Author: jcreigh
Date: Thu Jun  3 16:48:47 2010
New Revision: 75053

Modified:
   pypy/branch/x86-64-jit-backend/pypy/jit/backend/x86/regloc.py
Log:
make AssemblerLocation inherit from object instead of AbstractValue

Modified: pypy/branch/x86-64-jit-backend/pypy/jit/backend/x86/regloc.py
==============================================================================
--- pypy/branch/x86-64-jit-backend/pypy/jit/backend/x86/regloc.py	(original)
+++ pypy/branch/x86-64-jit-backend/pypy/jit/backend/x86/regloc.py	Thu Jun  3 16:48:47 2010
@@ -9,7 +9,7 @@
 # mc.ADD_rr()/ADD_rb()/ADD_ri().
 #
 
-class AssemblerLocation(AbstractValue):
+class AssemblerLocation(object):
     # XXX: Is adding "width" here correct?
     __slots__ = ('value', 'width')
     _immutable_ = True



More information about the Pypy-commit mailing list