From 0b1587d4b301a0be08f6a0286619d5d69cb06dd6 Mon Sep 17 00:00:00 2001 From: Bin Cheng Date: Mon, 22 Feb 2016 14:38:10 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/tree-vect-loop.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6d1a557579d..83c6a67f7b9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-02-22 Bin Cheng + + * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump + min_profitable_estimate, rather than min_profitable_iters. + 2016-02-22 Jakub Jelinek PR target/69885 diff --git a/gcc/tree-vect-loop.c b/gcc/tree-vect-loop.c index bbef502db3f..8c346697458 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; }