[pypy-commit] pypy default: fix for arm

mattip noreply at buildbot.pypy.org
Mon Mar 2 21:22:31 CET 2015


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r76224:0d8099ffa579
Date: 2015-03-02 22:21 +0200
http://bitbucket.org/pypy/pypy/changeset/0d8099ffa579/

Log:	fix for arm

diff --git a/rpython/jit/backend/arm/assembler.py b/rpython/jit/backend/arm/assembler.py
--- a/rpython/jit/backend/arm/assembler.py
+++ b/rpython/jit/backend/arm/assembler.py
@@ -553,7 +553,7 @@
         debug_stop('jit-backend-ops')
 
     def _call_header(self):
-        assert self.currpos() == 0
+        assert self.mc.currpos() == 0
         self.gen_func_prolog()
 
     def _call_header_with_stack_check(self):


More information about the pypy-commit mailing list