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/dwarfout.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/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 ed201898c6c..f91cccb3420 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); } |