diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-09-09 13:06:43 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-09-09 13:06:43 +0000 |
commit | c338f2e39da17e572e0661ad6a15c59bbfc4b529 (patch) | |
tree | b56dbab169263ce9ad963b7070c7c0593dd51aea /gcc/dwarf2out.c | |
parent | d27c9b1ed7103e622b9f72ffe7e4e950443fe96b (diff) | |
download | gcc-c338f2e39da17e572e0661ad6a15c59bbfc4b529.tar.gz |
gcc/
* alias.c (addr_side_effect_eval): Use gen_int_mode with the mode
of the associated gen_rtx_* call.
* caller-save.c (init_caller_save): Likewise.
* combine.c (find_split_point, make_extraction): Likewise.
(make_compound_operation): Likewise.
* dwarf2out.c (mem_loc_descriptor): Likewise.
* explow.c (plus_constant, probe_stack_range): Likewise.
* expmed.c (expand_mult_const): Likewise.
* expr.c (emit_single_push_insn_1, do_tablejump): Likewise.
* reload1.c (init_reload): Likewise.
* valtrack.c (cleanup_auto_inc_dec): Likewise.
* var-tracking.c (adjust_mems): Likewise.
* modulo-sched.c (sms_schedule): Likewise, but use gen_rtx_GT
rather than gen_rtx_fmt_ee.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@202391 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index fc1c3f21565..7bf739d154f 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -12386,9 +12386,10 @@ mem_loc_descriptor (rtx rtl, enum machine_mode mode, /* Turn these into a PLUS expression and fall into the PLUS code below. */ rtl = gen_rtx_PLUS (mode, XEXP (rtl, 0), - GEN_INT (GET_CODE (rtl) == PRE_INC - ? GET_MODE_UNIT_SIZE (mem_mode) - : -GET_MODE_UNIT_SIZE (mem_mode))); + gen_int_mode (GET_CODE (rtl) == PRE_INC + ? GET_MODE_UNIT_SIZE (mem_mode) + : -GET_MODE_UNIT_SIZE (mem_mode), + mode)); /* ... fall through ... */ |