[pypy-commit] pypy arm-backend-2: typo

bivab noreply at buildbot.pypy.org
Mon Nov 21 13:00:35 CET 2011


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r49613:2bddb9109f82
Date: 2011-11-21 12:00 +0100
http://bitbucket.org/pypy/pypy/changeset/2bddb9109f82/

Log:	typo

diff --git a/pypy/jit/backend/arm/opassembler.py b/pypy/jit/backend/arm/opassembler.py
--- a/pypy/jit/backend/arm/opassembler.py
+++ b/pypy/jit/backend/arm/opassembler.py
@@ -190,7 +190,7 @@
 
     _mixin_ = True
 
-    def _emit_guard(self, op, arglocs, fcond, save_exc=False, is_guard_not_ivalidated=False):
+    def _emit_guard(self, op, arglocs, fcond, save_exc=False, is_guard_not_invalidated=False):
         descr = op.getdescr()
         assert isinstance(descr, AbstractFailDescr)
 
@@ -205,7 +205,7 @@
                                     faillocs=arglocs,
                                     offset=pos,
                                     fcond=fcond,
-                                    is_invalidate=is_guard_not_ivalidated,
+                                    is_invalidate=is_guard_not_invalidated,
                                     save_exc=save_exc))
         return c.AL
 
@@ -275,7 +275,7 @@
         return fcond
 
     def emit_op_guard_not_invalidated(self, op, locs, regalloc, fcond):
-        return self._emit_guard(op, locs, fcond, is_guard_not_ivalidated=True)
+        return self._emit_guard(op, locs, fcond, is_guard_not_invalidated=True)
 
     def _cmp_guard_class(self, op, locs, regalloc, fcond):
         offset = locs[2]


More information about the pypy-commit mailing list