[pypy-commit] pypy vmprof: hrmpf

fijal noreply at buildbot.pypy.org
Thu Jan 15 14:26:08 CET 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
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


More information about the pypy-commit mailing list