Author: Maciej Fijalkowski <[email protected]>
Branch: vmprof
Changeset: r75344:ff99e82da184
Date: 2015-01-15 15:25 +0200
http://bitbucket.org/pypy/pypy/changeset/ff99e82da184/

Log:    hrmpf

diff --git a/rpython/jit/metainterp/warmspot.py 
b/rpython/jit/metainterp/warmspot.py
--- a/rpython/jit/metainterp/warmspot.py
+++ b/rpython/jit/metainterp/warmspot.py
@@ -679,8 +679,8 @@
             self.rewrite_access_helper(op)
 
     def create_jit_entry_points(self):
-        for func, args_s, s_result in all_jit_entrypoints:
-            self.helper_func(func, args_s, s_result)
+        for func, args, result in all_jit_entrypoints:
+            self.helper_func(lltype.FuncPtr(args, result), func)
 
     def rewrite_access_helper(self, op):
         # make sure we make a copy of function so it no longer belongs
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to