diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-03-15 07:17:02 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-03-15 07:17:02 -0500 |
commit | fa1610e95b31962667db9ac4c2553227bd236c52 (patch) | |
tree | bca95f11a70f228c00ae62abce352bd4df9bda27 /gcc/dwarfout.c | |
parent | 29ae50126345055d032f8725be11c02441892542 (diff) | |
download | gcc-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.c | 4 |
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); } |