OSDN Git Service

* sdbout.c (sdbout_symbol): Pass VOIDmode to eliminate_regs.
authordavek <davek@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 22 Apr 2009 01:50:03 +0000 (01:50 +0000)
committerdavek <davek@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 22 Apr 2009 01:50:03 +0000 (01:50 +0000)
(sdbout_parms):  Likewise.

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

gcc/ChangeLog
gcc/sdbout.c

index e93551b..c33e2d9 100644 (file)
@@ -1,3 +1,8 @@
+2009-04-22  Dave Korn  <dave.korn.cygwin@gmail.com>
+
+       * sdbout.c (sdbout_symbol):  Pass VOIDmode to eliminate_regs.
+       (sdbout_parms):  Likewise.
+
 2009-04-21  Kaz Kojima  <kkojima@gcc.gnu.org>
 
        * config/sh/sh.c (prepare_cbranch_operands): Use
 2009-04-21  Kaz Kojima  <kkojima@gcc.gnu.org>
 
        * config/sh/sh.c (prepare_cbranch_operands): Use
index 9874db7..818ff63 100644 (file)
@@ -771,7 +771,7 @@ sdbout_symbol (tree decl, int local)
        return;
 
       SET_DECL_RTL (decl,
        return;
 
       SET_DECL_RTL (decl,
-                   eliminate_regs (DECL_RTL (decl), 0, NULL_RTX));
+                   eliminate_regs (DECL_RTL (decl), VOIDmode, NULL_RTX));
 #ifdef LEAF_REG_REMAP
       if (current_function_uses_only_leaf_regs)
        leaf_renumber_regs_insn (DECL_RTL (decl));
 #ifdef LEAF_REG_REMAP
       if (current_function_uses_only_leaf_regs)
        leaf_renumber_regs_insn (DECL_RTL (decl));
@@ -1271,9 +1271,9 @@ sdbout_parms (tree parms)
        /* Perform any necessary register eliminations on the parameter's rtl,
           so that the debugging output will be accurate.  */
        DECL_INCOMING_RTL (parms)
        /* Perform any necessary register eliminations on the parameter's rtl,
           so that the debugging output will be accurate.  */
        DECL_INCOMING_RTL (parms)
-         = eliminate_regs (DECL_INCOMING_RTL (parms), 0, NULL_RTX);
+         = eliminate_regs (DECL_INCOMING_RTL (parms), VOIDmode, NULL_RTX);
        SET_DECL_RTL (parms,
        SET_DECL_RTL (parms,
-                     eliminate_regs (DECL_RTL (parms), 0, NULL_RTX));
+                     eliminate_regs (DECL_RTL (parms), VOIDmode, NULL_RTX));
 
        if (PARM_PASSED_IN_MEMORY (parms))
          {
 
        if (PARM_PASSED_IN_MEMORY (parms))
          {