[pypy-svn] r65591 - pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86

fijal at codespeak.net fijal at codespeak.net
Thu Jun 4 21:52:12 CEST 2009


Author: fijal
Date: Thu Jun  4 21:52:12 2009
New Revision: 65591

Modified:
   pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86/regalloc.py
Log:
A fix for a test that will come at some point soon...


Modified: pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86/regalloc.py
==============================================================================
--- pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86/regalloc.py	(original)
+++ pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86/regalloc.py	Thu Jun  4 21:52:12 2009
@@ -83,6 +83,8 @@
             self.current_stack_depth = sd
         else:
             self._rewrite_const_ptrs(guard_op.suboperations)
+            guard_op.inputargs = None
+            self._compute_inpargs(guard_op)
             inp = guard_op.inputargs
             self.reg_bindings = {}
             self.stack_bindings = {}



More information about the Pypy-commit mailing list