[pypy-commit] pypy virtualref-virtualizable: merged default in

alex_gaynor noreply at buildbot.pypy.org
Sun Apr 14 03:24:27 CEST 2013


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: virtualref-virtualizable
Changeset: r63331:927411444d44
Date: 2013-04-13 18:21 -0700
http://bitbucket.org/pypy/pypy/changeset/927411444d44/

Log:	merged default in

diff --git a/rpython/jit/backend/arm/opassembler.py b/rpython/jit/backend/arm/opassembler.py
--- a/rpython/jit/backend/arm/opassembler.py
+++ b/rpython/jit/backend/arm/opassembler.py
@@ -1291,8 +1291,8 @@
             self._emit_call(imm(self.releasegil_addr), [], fcond)
 
     def call_reacquire_gil(self, gcrootmap, save_loc, regalloc, fcond):
-	# save the previous result into the stack temporarily, in case it is in
-	# a caller saved register.
+        # save the previous result into the stack temporarily, in case it is in
+        # a caller saved register.
         # NOTE: like with call_release_gil(), we assume that we don't need to
         # save vfp regs in this case. Besides the result location
         regs_to_save = []
diff --git a/rpython/jit/backend/arm/regalloc.py b/rpython/jit/backend/arm/regalloc.py
--- a/rpython/jit/backend/arm/regalloc.py
+++ b/rpython/jit/backend/arm/regalloc.py
@@ -554,9 +554,9 @@
         return self._prepare_call(op)
 
     def _prepare_call(self, op, force_store=[], save_all_regs=False):
-        args = [None] * (op.numargs()+1)
+        args = [None] * (op.numargs() + 1)
         for i in range(op.numargs()):
-	    args[i+1] = self.loc(op.getarg(i))
+            args[i + 1] = self.loc(op.getarg(i))
         # spill variables that need to be saved around calls
         self.vfprm.before_call(save_all_regs=save_all_regs)
         if not save_all_regs:


More information about the pypy-commit mailing list