diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2013-09-09 13:06:43 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2013-09-09 13:06:43 +0000 |
commit | 4789c0cef392722e1c084eba900c0c469fba3bc1 (patch) | |
tree | b56dbab169263ce9ad963b7070c7c0593dd51aea /gcc/modulo-sched.c | |
parent | a811f7cbad669cb3398ada5fd29cea19f7dff1d3 (diff) | |
download | gcc-4789c0cef392722e1c084eba900c0c469fba3bc1.zip gcc-4789c0cef392722e1c084eba900c0c469fba3bc1.tar.gz gcc-4789c0cef392722e1c084eba900c0c469fba3bc1.tar.bz2 |
alias.c (addr_side_effect_eval): Use gen_int_mode with the mode of the associated gen_rtx_* call.
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.
From-SVN: r202391
Diffstat (limited to 'gcc/modulo-sched.c')
-rw-r--r-- | gcc/modulo-sched.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/modulo-sched.c b/gcc/modulo-sched.c index 0df5fb6..a1d0999 100644 --- a/gcc/modulo-sched.c +++ b/gcc/modulo-sched.c @@ -1715,8 +1715,9 @@ sms_schedule (void) /* case the BCT count is not known , Do loop-versioning */ if (count_reg && ! count_init) { - rtx comp_rtx = gen_rtx_fmt_ee (GT, VOIDmode, count_reg, - GEN_INT(stage_count)); + rtx comp_rtx = gen_rtx_GT (VOIDmode, count_reg, + gen_int_mode (stage_count, + GET_MODE (count_reg))); unsigned prob = (PROB_SMS_ENOUGH_ITERATIONS * REG_BR_PROB_BASE) / 100; |