diff options
author | Bin Cheng <bin.cheng@arm.com> | 2016-02-22 14:38:10 +0000 |
---|---|---|
committer | Bin Cheng <amker@gcc.gnu.org> | 2016-02-22 14:38:10 +0000 |
commit | 0b1587d4b301a0be08f6a0286619d5d69cb06dd6 (patch) | |
tree | 438677f6852958f62dbadd9d1dea3a893047b030 /gcc | |
parent | 09c92f1c27eb8f5028ef5f0164774b6088a493d0 (diff) | |
download | gcc-0b1587d4b301a0be08f6a0286619d5d69cb06dd6.zip gcc-0b1587d4b301a0be08f6a0286619d5d69cb06dd6.tar.gz gcc-0b1587d4b301a0be08f6a0286619d5d69cb06dd6.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-vect-loop.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6d1a557..83c6a67 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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> PR target/69885 diff --git a/gcc/tree-vect-loop.c b/gcc/tree-vect-loop.c index bbef502..8c34669 100644 --- a/gcc/tree-vect-loop.c +++ b/gcc/tree-vect-loop.c @@ -3430,8 +3430,8 @@ vect_estimate_min_profitable_iters (loop_vec_info loop_vinfo, min_profitable_estimate = MAX (min_profitable_estimate, min_profitable_iters); if (dump_enabled_p ()) dump_printf_loc (MSG_NOTE, vect_location, - " Static estimate profitability threshold = %d\n", - min_profitable_iters); + " Static estimate profitability threshold = %d\n", + min_profitable_estimate); *ret_min_profitable_estimate = min_profitable_estimate; } |