[pypy-commit] pypy optimize-cond-call: fix

arigo noreply at buildbot.pypy.org
Fri Sep 4 19:49:04 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: optimize-cond-call
Changeset: r79444:69257123f94d
Date: 2015-09-04 19:49 +0200
http://bitbucket.org/pypy/pypy/changeset/69257123f94d/

Log:	fix

diff --git a/rpython/jit/backend/arm/opassembler.py b/rpython/jit/backend/arm/opassembler.py
--- a/rpython/jit/backend/arm/opassembler.py
+++ b/rpython/jit/backend/arm/opassembler.py
@@ -277,7 +277,7 @@
                 self.mc.CMP_rr(r.ip.value, typeid.value, cond=fcond)
 
     def emit_op_guard_not_invalidated(self, op, locs, regalloc, fcond):
-        return self._emit_guard(op, locs, fcond, save_exc=False,
+        return self._emit_guard(op, locs, save_exc=False,
                                             is_guard_not_invalidated=True)
 
     def emit_op_label(self, op, arglocs, regalloc, fcond):


More information about the pypy-commit mailing list