Author: hager <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to