From: Bin Cheng Date: Mon, 22 Feb 2016 14:38:10 +0000 (+0000) Subject: tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump min_profitable_estimate... X-Git-Tag: basepoints/gcc-7~828 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b1587d4b301a0be08f6a0286619d5d69cb06dd6;p=thirdparty%2Fgcc.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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6d1a557579d7..83c6a67f7b9c 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 bbef502db3fc..8c346697458b 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; }