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/tree-vect-loop.c | |
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/tree-vect-loop.c')
-rw-r--r-- | gcc/tree-vect-loop.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |