[pypy-svn] r65769 - pypy/branch/pyjitpl5/pypy/jit/backend/x86

fijal at codespeak.net fijal at codespeak.net
Sun Jun 14 04:18:12 CEST 2009


Author: fijal
Date: Sun Jun 14 04:18:10 2009
New Revision: 65769

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/x86/runner.py
Log:
Don't create infinite amount of bootstrap code, a bit pointless


Modified: pypy/branch/pyjitpl5/pypy/jit/backend/x86/runner.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/x86/runner.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/x86/runner.py	Sun Jun 14 04:18:10 2009
@@ -222,6 +222,7 @@
                                                           arglocs,
                                                           loop.inputargs,
                                                           loop._x86_stack_depth)
+            loop._x86_bootstrap_code = addr
         func = rffi.cast(lltype.Ptr(self.BOOTSTRAP_TP), addr)
         return func
 



More information about the Pypy-commit mailing list