Commit 914a6ee8 by John David Anglin Committed by John David Anglin

* pa64-regs.h (CONDITIONAL_REGISTER_USAGE): Fix loop upper bound.

From-SVN: r102841
parent f3667793
2005-08-07 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* pa64-regs.h (CONDITIONAL_REGISTER_USAGE): Fix loop upper bound.
2005-08-07 Danny Smith <dannysmith@users.sourceforge.net>
* config/i386/cygming.h (SUBTARGET_ENCODE_SECTION_INFO): Define.
......
......@@ -106,7 +106,7 @@ Boston, MA 02110-1301, USA. */
int i; \
if (TARGET_DISABLE_FPREGS || TARGET_SOFT_FLOAT)\
{ \
for (i = FP_REG_FIRST; i < FP_REG_LAST; i++)\
for (i = FP_REG_FIRST; i <= FP_REG_LAST; i++)\
fixed_regs[i] = call_used_regs[i] = 1; \
} \
if (flag_pic) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment