Author: Maciej Fijalkowski <[email protected]>
Branch: remove-globals-in-jit
Changeset: r59729:43b334a4ba6c
Date: 2013-01-05 18:05 +0200
http://bitbucket.org/pypy/pypy/changeset/43b334a4ba6c/

Log:    kill tabs

diff --git a/pypy/jit/backend/arm/assembler.py 
b/pypy/jit/backend/arm/assembler.py
--- a/pypy/jit/backend/arm/assembler.py
+++ b/pypy/jit/backend/arm/assembler.py
@@ -225,7 +225,7 @@
         #
         # Call the helper, which will return a dead frame object with
         # the correct exception set, or MemoryError by default
-       # XXX make sure we return the correct value here
+        # XXX make sure we return the correct value here
         addr = rffi.cast(lltype.Signed, self.cpu.get_propagate_exception())
         mc.BL(addr)
         self.gen_func_epilog(mc=mc)
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
@@ -36,7 +36,7 @@
 
 class GuardToken(object):
     def __init__(self, descr, failargs, faillocs, offset, save_exc, fcond=c.AL,
-               is_guard_not_invalidated=False, is_guard_not_forced=False):
+                 is_guard_not_invalidated=False, is_guard_not_forced=False):
         assert isinstance(save_exc, bool)
         self.descr = descr
         self.offset = offset
@@ -319,7 +319,7 @@
     def emit_op_finish(self, op, arglocs, regalloc, fcond):
         [argloc] = arglocs
         if argloc is not r.r0: #XXX verify this
-           self.mov_loc_loc(argloc, r.r0, fcond)
+            self.mov_loc_loc(argloc, r.r0, fcond)
         # exit function
         self.gen_func_epilog()
         return fcond
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to