[pypy-commit] pypy jitframe-on-heap: fix for test_jump on ARM

bivab noreply at buildbot.pypy.org
Tue Feb 19 11:53:32 CET 2013


Author: David Schneider <david.schneider at picle.org>
Branch: jitframe-on-heap
Changeset: r61457:4f99e4952fca
Date: 2013-02-19 11:51 +0100
http://bitbucket.org/pypy/pypy/changeset/4f99e4952fca/

Log:	fix for test_jump on ARM

diff --git a/rpython/jit/backend/arm/test/test_jump.py b/rpython/jit/backend/arm/test/test_jump.py
--- a/rpython/jit/backend/arm/test/test_jump.py
+++ b/rpython/jit/backend/arm/test/test_jump.py
@@ -6,7 +6,8 @@
 from rpython.jit.backend.arm.jump import remap_frame_layout, remap_frame_layout_mixed
 from rpython.jit.metainterp.history import INT
 
-frame_pos = ARMFrameManager.frame_pos
+fm = ARMFrameManager(0)
+frame_pos = fm.frame_pos
 
 class MockAssembler:
     def __init__(self):


More information about the pypy-commit mailing list