From: amker Date: Mon, 22 Feb 2016 14:38:10 +0000 (+0000) Subject: * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce145c335eb1d5f4a331c3fcf313680ee55ebb55;p=thirdparty%2Fgcc.git * tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump min_profitable_estimate, rather than min_profitable_iters. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233604 138bc75d-0d04-0410-961f-82ee72b054a4 --- 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; }