diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-03-15 12:17:02 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-03-15 12:17:02 +0000 |
commit | 2db89f10a01995e86a1fb0303840b493bae07103 (patch) | |
tree | bca95f11a70f228c00ae62abce352bd4df9bda27 /gcc/dwarf2out.c | |
parent | e87a940156e52427dd37528ad9555d4820406fce (diff) | |
download | gcc-2db89f10a01995e86a1fb0303840b493bae07103.tar.gz |
Change all calls to eliminate_regs.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13705 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 1f108df0741..89df539ec0b 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. */ |