diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-15 17:55:58 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-12-15 17:55:58 +0000 |
commit | 6182a80f9ca413f49350c49e938a2cbfe21663e9 (patch) | |
tree | 83b6fb18e33436103a7c2a0c17e90eae2899f811 /gcc/dwarfout.c | |
parent | 2948450ddbe2ce320cd3740cb3a5b46be5edc07d (diff) | |
download | gcc-6182a80f9ca413f49350c49e938a2cbfe21663e9.tar.gz |
* reload.h, reload1.c (eliminate_regs), caller-save.c, dbxout.c,
dwarfout.c, dwarf2out.c, reload.c, sdbout.c: Revert March 15 change.
* reload.c (push_reload): If WORD_REGISTER_OPERATIONS, reload the
SUBREG_REG if the word count is unchanged.
* reload1.c (eliminate_regs) [case SET]: If W_R_O, preserve
subregs of identical word size for push_reload.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17105 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 d7eef70444c..a72ccac5c81 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -1866,7 +1866,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, 0)); + (eliminate_regs (SAVE_EXPR_RTL (bound), 0, NULL_RTX)); } ASM_OUTPUT_LABEL (asm_out_file, end_label); @@ -2409,7 +2409,7 @@ location_or_const_value_attribute (decl) if (rtl == NULL_RTX) return; - rtl = eliminate_regs (rtl, 0, NULL_RTX, 0); + rtl = eliminate_regs (rtl, 0, NULL_RTX); #ifdef LEAF_REG_REMAP if (leaf_function) leaf_renumber_regs_insn (rtl); |