[pypy-svn] r36744 - pypy/dist/pypy/jit/codegen/ppc

mwh at codespeak.net mwh at codespeak.net
Sun Jan 14 17:26:46 CET 2007


Author: mwh
Date: Sun Jan 14 17:26:45 2007
New Revision: 36744

Modified:
   pypy/dist/pypy/jit/codegen/ppc/instruction.py
Log:
d-t-w


Modified: pypy/dist/pypy/jit/codegen/ppc/instruction.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/ppc/instruction.py	(original)
+++ pypy/dist/pypy/jit/codegen/ppc/instruction.py	Sun Jan 14 17:26:45 2007
@@ -12,7 +12,7 @@
         # instances with the same value in self.alloc can be used at
         # once.
         self.alloc = self
-        
+
     def make_loc(self):
         """ When we assign a variable to one of these registers, we
         call make_loc() to get the actual location instance; that
@@ -48,7 +48,7 @@
 class Register(AllocationSlot):
     is_register = True
     def __init__(self):
-        AllocationSlot.__init__(self)        
+        AllocationSlot.__init__(self)
 
 class GPR(Register):
     regclass = GP_REGISTER
@@ -88,7 +88,7 @@
         Register.__init__(self)
         self.alloc = crf
         self.number = crf.number
-        self.info = (-1,-1) # (bit, negated) 
+        self.info = (-1,-1) # (bit, negated)
     def set_info(self, info):
         assert len(info) == 2
         self.info = info



More information about the Pypy-commit mailing list