* tree-ssa-loop-ivopts.c (estimated_stmt_executions_int): Use
likely_max_stmt_executions_int.
From-SVN: r236852
+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);
}