OSDN Git Service

* config/mips/abi64.h (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Set
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 16 Apr 2002 03:01:17 +0000 (03:01 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 16 Apr 2002 03:01:17 +0000 (03:01 +0000)
        call_really_used_regs too.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52352 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/mips/abi64.h

index 830658b..8362777 100644 (file)
@@ -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>
index a76f8c0..c5125d7 100644 (file)
@@ -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;       \
     }                                                                  \
 }