diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-04-13 17:10:52 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-04-13 17:10:52 -0400 |
commit | bece5e07ad2c356a5932024996d1489c686976d8 (patch) | |
tree | 1c818dc1e78b051a61b6b38e0c3aef4883624e71 | |
parent | 1c6bc8174123898b448bf98bcd76a1a88afe0799 (diff) | |
download | gcc-bece5e07ad2c356a5932024996d1489c686976d8.zip gcc-bece5e07ad2c356a5932024996d1489c686976d8.tar.gz gcc-bece5e07ad2c356a5932024996d1489c686976d8.tar.bz2 |
(dbxout_symbol): Last arg to eliminate_regs is NULL_RTX.
From-SVN: r4137
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index bb1d569..dc1f892 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)); |