aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarfout.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/dwarfout.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/dwarfout.c')
-rw-r--r--gcc/dwarfout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c
index ed201898..f91cccb 100644
--- a/gcc/dwarfout.c
+++ b/gcc/dwarfout.c
@@ -1860,7 +1860,7 @@ output_bound_representation (bound, dim_num, u_or_l)
if (TREE_CODE (bound) == SAVE_EXPR)
output_loc_descriptor
- (eliminate_regs (SAVE_EXPR_RTL (bound), 0, NULL_RTX));
+ (eliminate_regs (SAVE_EXPR_RTL (bound), 0, NULL_RTX, 0));
}
ASM_OUTPUT_LABEL (asm_out_file, end_label);
@@ -2130,7 +2130,7 @@ location_attribute (rtl)
if (! is_pseudo_reg (rtl)
&& (GET_CODE (rtl) != MEM || ! is_pseudo_reg (XEXP (rtl, 0))))
- output_loc_descriptor (eliminate_regs (rtl, 0, NULL_RTX));
+ output_loc_descriptor (eliminate_regs (rtl, 0, NULL_RTX, 0));
ASM_OUTPUT_LABEL (asm_out_file, end_label);
}