[pypy-svn] r52215 - pypy/branch/jit-refactoring/pypy/rpython

arigo at codespeak.net arigo at codespeak.net
Thu Mar 6 15:59:00 CET 2008


Author: arigo
Date: Thu Mar  6 15:58:49 2008
New Revision: 52215

Modified:
   pypy/branch/jit-refactoring/pypy/rpython/annlowlevel.py
Log:
Typo


Modified: pypy/branch/jit-refactoring/pypy/rpython/annlowlevel.py
==============================================================================
--- pypy/branch/jit-refactoring/pypy/rpython/annlowlevel.py	(original)
+++ pypy/branch/jit-refactoring/pypy/rpython/annlowlevel.py	Thu Mar  6 15:58:49 2008
@@ -394,8 +394,8 @@
             F = eval('P.TO.%s' % name)
             s_callable = self.bookkeeper.immutablevalue(callable)
             args_s = [annmodel.lltype_to_annotation(T) for T in F.TO.ARGS]
-            key = (name, llhelper, s_callable.const)
-            s_res = self.bookkeeper.emulate_pbc_call(name, s_callable, args_s)
+            key = (llhelper, s_callable.const)
+            s_res = self.bookkeeper.emulate_pbc_call(key, s_callable, args_s)
             assert annmodel.lltype_to_annotation(F.TO.RESULT).contains(s_res)
         return annmodel.SomePtr(P)
 



More information about the Pypy-commit mailing list