summaryrefslogtreecommitdiff
path: root/gcc/dwarfout.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1997-03-15 12:17:02 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1997-03-15 12:17:02 +0000
commit2db89f10a01995e86a1fb0303840b493bae07103 (patch)
treebca95f11a70f228c00ae62abce352bd4df9bda27 /gcc/dwarfout.c
parente87a940156e52427dd37528ad9555d4820406fce (diff)
downloadgcc-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.c4
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);
}