aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarf2out.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1997-03-15 07:17:02 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1997-03-15 07:17:02 -0500
commitfa1610e95b31962667db9ac4c2553227bd236c52 (patch)
treebca95f11a70f228c00ae62abce352bd4df9bda27 /gcc/dwarf2out.c
parent29ae50126345055d032f8725be11c02441892542 (diff)
downloadgcc-fa1610e95b31962667db9ac4c2553227bd236c52.zip
gcc-fa1610e95b31962667db9ac4c2553227bd236c52.tar.gz
gcc-fa1610e95b31962667db9ac4c2553227bd236c52.tar.bz2
Change all calls to eliminate_regs.
From-SVN: r13705
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r--gcc/dwarf2out.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 1f108df..89df539 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -1,5 +1,5 @@
/* Output Dwarf2 format symbol table information from the GNU C compiler.
- Copyright (C) 1992, 1993, 1995, 1996 Free Software Foundation, Inc.
+ Copyright (C) 1992, 1993, 1995, 1996, 1997 Free Software Foundation, Inc.
Contributed by Gary Funck (gary@intrepid.com). Derived from the
DWARF 1 implementation written by Ron Guilmette (rfg@monkeys.com).
Extensively modified by Jason Merrill (jason@cygnus.com).
@@ -5708,7 +5708,7 @@ add_location_attribute (die, rtl)
&& (GET_CODE (rtl) != MEM
|| !is_pseudo_reg (XEXP (rtl, 0))))
{
- loc_descr = loc_descriptor (eliminate_regs (rtl, 0, NULL_RTX));
+ loc_descr = loc_descriptor (eliminate_regs (rtl, 0, NULL_RTX, 0));
}
#ifdef MIPS_DEBUGGING_INFO
@@ -6115,7 +6115,7 @@ add_bound_info (subrange_die, bound_attr, bound)
if (!optimize)
{
bound_loc = mem_loc_descriptor
- (eliminate_regs (SAVE_EXPR_RTL (bound), 0, NULL_RTX));
+ (eliminate_regs (SAVE_EXPR_RTL (bound), 0, NULL_RTX, 0));
add_AT_loc (subrange_die, bound_attr, bound_loc);
}
/* else leave out the attribute. */