mirror of git://gcc.gnu.org/git/gcc.git
tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump min_profitable_estimate, rather than min_profitable_iters.
* tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump min_profitable_estimate, rather than min_profitable_iters. From-SVN: r233604
This commit is contained in:
parent
09c92f1c27
commit
0b1587d4b3
|
|
@ -1,3 +1,8 @@
|
||||||
|
2016-02-22 Bin Cheng <bin.cheng@arm.com>
|
||||||
|
|
||||||
|
* tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
|
||||||
|
min_profitable_estimate, rather than min_profitable_iters.
|
||||||
|
|
||||||
2016-02-22 Jakub Jelinek <jakub@redhat.com>
|
2016-02-22 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
PR target/69885
|
PR target/69885
|
||||||
|
|
|
||||||
|
|
@ -3430,8 +3430,8 @@ vect_estimate_min_profitable_iters (loop_vec_info loop_vinfo,
|
||||||
min_profitable_estimate = MAX (min_profitable_estimate, min_profitable_iters);
|
min_profitable_estimate = MAX (min_profitable_estimate, min_profitable_iters);
|
||||||
if (dump_enabled_p ())
|
if (dump_enabled_p ())
|
||||||
dump_printf_loc (MSG_NOTE, vect_location,
|
dump_printf_loc (MSG_NOTE, vect_location,
|
||||||
" Static estimate profitability threshold = %d\n",
|
" Static estimate profitability threshold = %d\n",
|
||||||
min_profitable_iters);
|
min_profitable_estimate);
|
||||||
|
|
||||||
*ret_min_profitable_estimate = min_profitable_estimate;
|
*ret_min_profitable_estimate = min_profitable_estimate;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue