[pypy-commit] pypy ppc-backend-2: Define float_locs.

edelsohn noreply at buildbot.pypy.org
Tue Apr 24 03:14:34 CEST 2012


Author: edelsohn
Branch: ppc-backend-2
Changeset: r54708:84efa81dcdbd
Date: 2012-04-23 21:13 -0400
http://bitbucket.org/pypy/pypy/changeset/84efa81dcdbd/

Log:	Define float_locs.

diff --git a/pypy/jit/backend/ppc/opassembler.py b/pypy/jit/backend/ppc/opassembler.py
--- a/pypy/jit/backend/ppc/opassembler.py
+++ b/pypy/jit/backend/ppc/opassembler.py
@@ -500,6 +500,7 @@
         count = 0
         non_float_locs = []
         non_float_regs = []
+        float_locs = []
         for i in range(reg_args):
             arg = arglocs[i]
             if arg.type == FLOAT and count % 2 != 0:


More information about the pypy-commit mailing list