[pypy-commit] pypy default: Remove extraneous "-" sign.

arigo noreply at buildbot.pypy.org
Tue Nov 11 18:37:11 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r74452:f5a631ede713
Date: 2014-11-11 18:36 +0100
http://bitbucket.org/pypy/pypy/changeset/f5a631ede713/

Log:	Remove extraneous "-" sign.

diff --git a/rpython/jit/backend/x86/regalloc.py b/rpython/jit/backend/x86/regalloc.py
--- a/rpython/jit/backend/x86/regalloc.py
+++ b/rpython/jit/backend/x86/regalloc.py
@@ -1398,7 +1398,7 @@
         startindex_loc = self.rm.make_sure_var_in_reg(args[1], args)
         if 0 <= constbytes <= 16 * 8 and (
                 valid_addressing_size(itemsize) or
--               isinstance(startindex_loc, ImmedLoc)):
+                isinstance(startindex_loc, ImmedLoc)):
             if IS_X86_64:
                 null_loc = X86_64_XMM_SCRATCH_REG
             else:


More information about the pypy-commit mailing list