Commit 861829ed by Richard Henderson Committed by Richard Henderson

abi64.h (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Set call_really_used_regs too.

        * config/mips/abi64.h (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Set
        call_really_used_regs too.

From-SVN: r52352
parent f1e888ae
2002-04-15 Richard Henderson <rth@redhat.com>
* config/mips/abi64.h (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Set
call_really_used_regs too.
2002-04-15 Richard Henderson <rth@redhat.com>
* config/alpha/gnu.h (CPP_PREDEFINES): Underscores for gnu_hurd.
2002-04-15 David S. Miller <davem@redhat.com>
......
......@@ -52,14 +52,14 @@ Boston, MA 02111-1307, USA. */
{ \
int regno; \
for (regno = FP_REG_FIRST + 20; regno < FP_REG_FIRST + 24; regno++) \
call_used_regs[regno] = 1; \
call_really_used_regs[regno] = call_used_regs[regno] = 1; \
} \
/* odd registers from fp21 to fp31 are now caller saved. */ \
if (mips_abi == ABI_N32 || mips_abi == ABI_MEABI) \
{ \
int regno; \
for (regno = FP_REG_FIRST + 21; regno <= FP_REG_FIRST + 31; regno+=2) \
call_used_regs[regno] = 1; \
call_really_used_regs[regno] = call_used_regs[regno] = 1; \
} \
}
......
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