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

jcreigh at codespeak.net jcreigh at codespeak.net
Wed Jul 21 16:06:19 CEST 2010


Author: jcreigh
Date: Wed Jul 21 16:06:15 2010
New Revision: 76299

Modified:
   pypy/branch/x86-64-jit-backend/pypy/jit/backend/x86/regloc.py
Log:
remove baseless scary comments

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	Wed Jul 21 16:06:15 2010
@@ -50,7 +50,6 @@
     def location_code(self):
         return 'b'
 
-    # FIXME: This definition of assembler sufficient?
     def assembler(self):
         return repr(self)
 
@@ -84,13 +83,11 @@
         else:
             return 'r'
 
-    # FIXME: This definition of assembler sufficient?
     def assembler(self):
         return '%' + repr(self)
 
 class ImmedLoc(AssemblerLocation):
     _immutable_ = True
-    # XXX: Does this even make sense for an immediate?
     width = WORD
     def __init__(self, value):
         from pypy.rpython.lltypesystem import rffi, lltype



More information about the Pypy-commit mailing list