Commit 270d1bcd by Dave Korn Committed by Dave Korn

sdbout.c (sdbout_symbol): Pass VOIDmode to eliminate_regs.


	* sdbout.c (sdbout_symbol):  Pass VOIDmode to eliminate_regs.
	(sdbout_parms):  Likewise.

From-SVN: r146543
parent 228ee4f6
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> 2009-04-21 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/sh.c (prepare_cbranch_operands): Use * config/sh/sh.c (prepare_cbranch_operands): Use
......
...@@ -771,7 +771,7 @@ sdbout_symbol (tree decl, int local) ...@@ -771,7 +771,7 @@ sdbout_symbol (tree decl, int local)
return; return;
SET_DECL_RTL (decl, SET_DECL_RTL (decl,
eliminate_regs (DECL_RTL (decl), 0, NULL_RTX)); eliminate_regs (DECL_RTL (decl), VOIDmode, NULL_RTX));
#ifdef LEAF_REG_REMAP #ifdef LEAF_REG_REMAP
if (current_function_uses_only_leaf_regs) if (current_function_uses_only_leaf_regs)
leaf_renumber_regs_insn (DECL_RTL (decl)); leaf_renumber_regs_insn (DECL_RTL (decl));
...@@ -1271,9 +1271,9 @@ sdbout_parms (tree parms) ...@@ -1271,9 +1271,9 @@ sdbout_parms (tree parms)
/* Perform any necessary register eliminations on the parameter's rtl, /* Perform any necessary register eliminations on the parameter's rtl,
so that the debugging output will be accurate. */ so that the debugging output will be accurate. */
DECL_INCOMING_RTL (parms) 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))
{ {
......
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