[pypy-commit] pypy arm-backend-2: fix indentation after merge

bivab noreply at buildbot.pypy.org
Fri Dec 30 17:12:59 CET 2011


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r50959:794e761fa494
Date: 2011-12-30 13:53 +0100
http://bitbucket.org/pypy/pypy/changeset/794e761fa494/

Log:	fix indentation after merge

diff --git a/pypy/jit/backend/llsupport/gc.py b/pypy/jit/backend/llsupport/gc.py
--- a/pypy/jit/backend/llsupport/gc.py
+++ b/pypy/jit/backend/llsupport/gc.py
@@ -706,7 +706,7 @@
         def malloc_nursery_slowpath(size):
             """Allocate 'size' null bytes out of the nursery.
             Note that the fast path is typically inlined by the backend."""
-			assert size >= self.minimal_size_in_nursery
+            assert size >= self.minimal_size_in_nursery
             if self.DEBUG:
                 self._random_usage_of_xmm_registers()
             type_id = rffi.cast(llgroup.HALFWORD, 0)    # missing here
@@ -719,7 +719,7 @@
         def malloc_array(itemsize, tid, num_elem):
             """Allocate an array with a variable-size num_elem.
             Only works for standard arrays."""
-			assert num_elem >= 0, 'num_elem should be >= 0'
+            assert num_elem >= 0, 'num_elem should be >= 0'
             type_id = llop.extract_ushort(llgroup.HALFWORD, tid)
             check_typeid(type_id)
             return llop1.do_malloc_varsize_clear(


More information about the pypy-commit mailing list