From: Richard Kenner Date: Tue, 13 Apr 1993 21:10:52 +0000 (-0400) Subject: (dbxout_symbol): Last arg to eliminate_regs is NULL_RTX. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bece5e07ad2c356a5932024996d1489c686976d8;p=gcc.git (dbxout_symbol): Last arg to eliminate_regs is NULL_RTX. From-SVN: r4137 --- diff --git a/gcc/dbxout.c b/gcc/dbxout.c index bb1d56942fd..dc1f8920b15 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1659,7 +1659,7 @@ dbxout_symbol (decl, local) /* else it is something we handle like a normal variable. */ } - DECL_RTL (decl) = eliminate_regs (DECL_RTL (decl), 0, 0); + DECL_RTL (decl) = eliminate_regs (DECL_RTL (decl), 0, NULL_RTX); #ifdef LEAF_REG_REMAP if (leaf_function) leaf_renumber_regs_insn (DECL_RTL (decl));