[pypy-commit] pypy jitframe-on-heap: typo

fijal noreply at buildbot.pypy.org
Mon Jan 21 21:24:12 CET 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jitframe-on-heap
Changeset: r60315:b63e94b8a3a4
Date: 2013-01-21 22:23 +0200
http://bitbucket.org/pypy/pypy/changeset/b63e94b8a3a4/

Log:	typo

diff --git a/rpython/jit/backend/llsupport/llmodel.py b/rpython/jit/backend/llsupport/llmodel.py
--- a/rpython/jit/backend/llsupport/llmodel.py
+++ b/rpython/jit/backend/llsupport/llmodel.py
@@ -55,9 +55,9 @@
         FUNC_TP = lltype.Ptr(lltype.FuncType([llmemory.GCREF],
                                              llmemory.GCREF))
 
-        def realloc_frame(frame, size):
+        def realloc_frame(frame):
             frame = lltype.cast_opaque_ptr(jitframe.JITFRAMEPTR, frame)
-            new_frame = jitframe.JITFRAME.allocate(frame.frame_info)
+            new_frame = jitframe.JITFRAME.allocate(frame.jf_frame_info)
             # XXX now we know, rewrite this
             # we need to do this, because we're not sure what things
             # are GC pointers and which ones are not


More information about the pypy-commit mailing list