[pypy-svn] r21870 - pypy/dist/pypy/jit

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Jan 10 12:38:19 CET 2006


Author: cfbolz
Date: Tue Jan 10 12:38:18 2006
New Revision: 21870

Modified:
   pypy/dist/pypy/jit/llabstractinterp.py
Log:
it seems I broke the jit tests when doing the direct_call refactoring. I am
sorry.


Modified: pypy/dist/pypy/jit/llabstractinterp.py
==============================================================================
--- pypy/dist/pypy/jit/llabstractinterp.py	(original)
+++ pypy/dist/pypy/jit/llabstractinterp.py	Tue Jan 10 12:38:18 2006
@@ -312,7 +312,7 @@
             for st in stlist:
                 op = st.origblock.operations[st.origposition]
                 if op.opname == 'direct_call':
-                    v = v.value
+                    v = op.args[0].value
                 elif op.opname == 'indirect_call':
                     v = op.args[0]
                 else:



More information about the Pypy-commit mailing list