[pypy-svn] pypy numpy-exp: At least on 64bit this change looks much better

fijal commits-noreply at bitbucket.org
Thu Feb 17 16:07:24 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: numpy-exp
Changeset: r42109:90ab0a59c1e1
Date: 2011-02-16 07:37 -0700
http://bitbucket.org/pypy/pypy/changeset/90ab0a59c1e1/

Log:	At least on 64bit this change looks much better

diff --git a/pypy/jit/backend/x86/regalloc.py b/pypy/jit/backend/x86/regalloc.py
--- a/pypy/jit/backend/x86/regalloc.py
+++ b/pypy/jit/backend/x86/regalloc.py
@@ -146,7 +146,7 @@
         self._prepare(inputargs, operations)
         jump = operations[-1]
         loop_consts = self._compute_loop_consts(inputargs, jump, looptoken)
-        self.loop_consts = loop_consts
+        self.loop_consts = {}#loop_consts
         return self._process_inputargs(inputargs)
 
     def prepare_bridge(self, prev_depths, inputargs, arglocs, operations):


More information about the Pypy-commit mailing list