[pypy-svn] r69480 - pypy/branch/shorter-guard-path/pypy/jit/backend/x86
arigo at codespeak.net
arigo at codespeak.net
Fri Nov 20 19:30:20 CET 2009
Author: arigo
Date: Fri Nov 20 19:30:20 2009
New Revision: 69480
Modified:
pypy/branch/shorter-guard-path/pypy/jit/backend/x86/assembler.py
Log:
Can't use fixid() in RPython. :-(
Modified: pypy/branch/shorter-guard-path/pypy/jit/backend/x86/assembler.py
==============================================================================
--- pypy/branch/shorter-guard-path/pypy/jit/backend/x86/assembler.py (original)
+++ pypy/branch/shorter-guard-path/pypy/jit/backend/x86/assembler.py Fri Nov 20 19:30:20 2009
@@ -47,7 +47,7 @@
def make_new_mc(self):
new_mc = codebuf.MachineCodeBlock(self.bigsize)
- debug_print('[new machine code block at 0x%x]' % fixid(new_mc.tell()))
+ debug_print('[new machine code block at', new_mc.tell(), ']')
self._mc.JMP(rel32(new_mc.tell()))
self._mc.done()
self.old_mcs.append(self._mc)
More information about the Pypy-commit
mailing list