[pypy-commit] pypy default: Stylish fix, doesn't seem to change anything

arigo noreply at buildbot.pypy.org
Wed Nov 6 18:41:09 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r67866:08b6eb67086a
Date: 2013-11-06 18:40 +0100
http://bitbucket.org/pypy/pypy/changeset/08b6eb67086a/

Log:	Stylish fix, doesn't seem to change anything

diff --git a/rpython/jit/metainterp/optimizeopt/vstring.py b/rpython/jit/metainterp/optimizeopt/vstring.py
--- a/rpython/jit/metainterp/optimizeopt/vstring.py
+++ b/rpython/jit/metainterp/optimizeopt/vstring.py
@@ -530,7 +530,7 @@
                     dst.setitem(index + dst_start, vresult)
                 else:
                     new_op = ResOperation(mode.STRSETITEM, [
-                        op.getarg(1),
+                        dst.force_box(self),
                         ConstInt(index + dst_start),
                         vresult.force_box(self),
                     ], None)


More information about the pypy-commit mailing list