]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump min_profitable_estimate...
authorBin Cheng <bin.cheng@arm.com>
Mon, 22 Feb 2016 14:38:10 +0000 (14:38 +0000)
committerBin Cheng <amker@gcc.gnu.org>
Mon, 22 Feb 2016 14:38:10 +0000 (14:38 +0000)
* tree-vect-loop.c (vect_estimate_min_profitable_iters): Dump
min_profitable_estimate, rather than min_profitable_iters.

From-SVN: r233604

gcc/ChangeLog
gcc/tree-vect-loop.c

index 6d1a557579d7854d6248f0d56d1e9aa1ce8b89fa..83c6a67f7b9cc1a715783d72411236f2bdcaa26b 100644 (file)
@@ -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
index bbef502db3fcbe3d422dc3525bec55d6e4853d30..8c346697458bdf951d299d9006d72b2e35dc3c3d 100644 (file)
@@ -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;
 }