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

mwh at codespeak.net mwh at codespeak.net
Wed Jan 31 20:25:20 CET 2007


Author: mwh
Date: Wed Jan 31 20:25:16 2007
New Revision: 37684

Modified:
   pypy/dist/pypy/jit/codegen/ppc/instruction.py
Log:
the __repr__ of Unspill instructions called them "Spill"s, rather
confusingly...


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	Wed Jan 31 20:25:16 2007
@@ -636,7 +636,7 @@
         else:
             self.moveinsn = None
     def __repr__(self):
-        return '<Spill-%d %s: %s, %s>'%(self._magic_index, self.var, self.reg, self.stack)
+        return '<Unspill-%d %s: %s, %s>'%(self._magic_index, self.var, self.reg, self.stack)
     def emit(self, asm):
         if isinstance(self.reg, GPR):
             r = self.reg.number



More information about the Pypy-commit mailing list