diff options
author | Richard Henderson <rth@redhat.com> | 2002-04-15 20:01:17 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2002-04-15 20:01:17 -0700 |
commit | 861829ed08240e6a484475ee53b5eb24bde850bc (patch) | |
tree | 69dd81968669a33f0256773f6256b4b3c358da03 /gcc | |
parent | f1e888aea0089c38d73de22e2ad79e40d3e65da8 (diff) | |
download | gcc-861829ed08240e6a484475ee53b5eb24bde850bc.zip gcc-861829ed08240e6a484475ee53b5eb24bde850bc.tar.gz gcc-861829ed08240e6a484475ee53b5eb24bde850bc.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/abi64.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 830658b..8362777 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 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> diff --git a/gcc/config/mips/abi64.h b/gcc/config/mips/abi64.h index a76f8c0..c5125d7 100644 --- a/gcc/config/mips/abi64.h +++ b/gcc/config/mips/abi64.h @@ -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; \ } \ } |