[pypy-svn] r38883 - pypy/dist/pypy/jit/codegen/llvm

ericvrp at codespeak.net ericvrp at codespeak.net
Thu Feb 15 14:49:07 CET 2007


Author: ericvrp
Date: Thu Feb 15 14:49:06 2007
New Revision: 38883

Modified:
   pypy/dist/pypy/jit/codegen/llvm/rgenop.py
Log:
fix FlowingError in some jit/codegen/llvm tests


Modified: pypy/dist/pypy/jit/codegen/llvm/rgenop.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llvm/rgenop.py	(original)
+++ pypy/dist/pypy/jit/codegen/llvm/rgenop.py	Thu Feb 15 14:49:06 2007
@@ -729,6 +729,7 @@
             try:
                 funcsig = self.rgenop.funcsig[gv_fnptr.get_integer_value()]
             except KeyError:
+                funcsig = 'TODO: funcsig here'
                 py.test.skip('call an address directly not supported yet')
         args_gv2 = []
         for v in args_gv:



More information about the Pypy-commit mailing list