[pypy-commit] pypy jit-targets: XXX a reminder, for later

arigo noreply at buildbot.pypy.org
Thu Nov 24 18:44:01 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: jit-targets
Changeset: r49746:55729b2290bf
Date: 2011-11-24 16:31 +0100
http://bitbucket.org/pypy/pypy/changeset/55729b2290bf/

Log:	XXX a reminder, for later

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
@@ -1412,6 +1412,8 @@
             arg = inputargs[i]
             assert not isinstance(arg, Const)
             loc = self.loc(arg)
+            if loc is ebp:
+                assert 0, "XXX move it away from ebp"
             assert not (loc is tmpreg or loc is xmmtmp)
             if arg.type == FLOAT:
                 floatlocs[i] = loc


More information about the pypy-commit mailing list