likely_max_stmt_executions_int.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@236852
138bc75d-0d04-0410-961f-
82ee72b054a4
+2016-05-27 Jan Hubicka <hubicka@ucw.cz>
+
+ * tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
+ likely_max_stmt_executions_int.
+
2016-05-27 Jan Hubicka <hubicka@ucw.cz>
* tree-ssa-loop-prefetch.c (loop_prefetch_arrays): Use
HOST_WIDE_INT niter = estimated_stmt_executions_int (loop);
if (niter == -1)
{
- niter = max_stmt_executions_int (loop);
+ niter = likely_max_stmt_executions_int (loop);
if (niter == -1 || niter > AVG_LOOP_NITER (loop))
return AVG_LOOP_NITER (loop);
}