Author: edelsohn Branch: ppc-backend-2 Changeset: r55529:060304becc87 Date: 2012-06-08 15:13 -0400 http://bitbucket.org/pypy/pypy/changeset/060304becc87/
Log: Increment over GPRs for float arguments. diff --git a/pypy/jit/backend/ppc/regalloc.py b/pypy/jit/backend/ppc/regalloc.py --- a/pypy/jit/backend/ppc/regalloc.py +++ b/pypy/jit/backend/ppc/regalloc.py @@ -233,6 +233,8 @@ loc = r.PARAM_FPREGS[fparg_index] self.try_allocate_reg(box, selected_reg=loc) fparg_index += 1 + # XXX stdarg placing float args in FPRs and GPRs + arg_index += 1 else: if IS_PPC_32: cur_frame_pos -= 2 _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit