[pypy-commit] pypy ppc-jit-backend: replace tabs with spaces

hager noreply at buildbot.pypy.org
Mon Jan 2 11:53:53 CET 2012


Author: hager <sven.hager at uni-duesseldorf.de>
Branch: ppc-jit-backend
Changeset: r50972:0b164b7fc20c
Date: 2012-01-02 11:53 +0100
http://bitbucket.org/pypy/pypy/changeset/0b164b7fc20c/

Log:	replace tabs with spaces

diff --git a/pypy/jit/backend/ppc/ppcgen/ppc_assembler.py b/pypy/jit/backend/ppc/ppcgen/ppc_assembler.py
--- a/pypy/jit/backend/ppc/ppcgen/ppc_assembler.py
+++ b/pypy/jit/backend/ppc/ppcgen/ppc_assembler.py
@@ -713,13 +713,13 @@
     def gen_64_bit_func_descrs(self):
         d0 = self.datablockwrapper.malloc_aligned(3*WORD, alignment=1)
         d1 = self.datablockwrapper.malloc_aligned(3*WORD, alignment=1)
-	return [d0, d1]
+        return [d0, d1]
 
     def write_64_bit_func_descr(self, descr, start_addr):
         data = rffi.cast(rffi.CArrayPtr(lltype.Signed), descr)
-	data[0] = start_addr
-	data[1] = 0
-	data[2] = 0
+        data[0] = start_addr
+        data[1] = 0
+        data[2] = 0
 
     def compute_frame_depth(self, regalloc):
         PARAMETER_AREA = self.max_stack_params * WORD


More information about the pypy-commit mailing list