[pypy-commit] pypy better-jit-hooks: another merge default

fijal noreply at buildbot.pypy.org
Sun Dec 25 19:24:55 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: better-jit-hooks
Changeset: r50862:979a63998eaa
Date: 2011-12-25 20:23 +0200
http://bitbucket.org/pypy/pypy/changeset/979a63998eaa/

Log:	another merge default

diff --git a/pypy/jit/metainterp/optimizeopt/unroll.py b/pypy/jit/metainterp/optimizeopt/unroll.py
--- a/pypy/jit/metainterp/optimizeopt/unroll.py
+++ b/pypy/jit/metainterp/optimizeopt/unroll.py
@@ -269,7 +269,8 @@
                 # in case it does, we would prefer to be suboptimal in asm
                 # to a fatal RPython exception.
                 if newresult is not op.result and not newvalue.is_constant():
-                    self.short_boxes.alias(newresult, op.result)
+                    # XXX fix me?
+                    #self.short_boxes.alias(newresult, op.result)
                     op = ResOperation(rop.SAME_AS, [op.result], newresult)
                     self.optimizer._newoperations = [op] + self.optimizer._newoperations
         self.optimizer.flush()


More information about the pypy-commit mailing list