* tree-cfg.c (print_loop): Print likely upper bounds.
From-SVN: r236893
+2016-05-30 Jan Hubicka <hubicka@ucw.cz>
+
+ * tree-cfg.c (print_loop): Print likely upper bounds.
+
2016-05-30 Jan Hubicka <hubicka@ucw.cz>
* doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
fprintf (file, ", upper_bound = ");
print_decu (loop->nb_iterations_upper_bound, file);
}
+ if (loop->any_likely_upper_bound)
+ {
+ fprintf (file, ", likely_upper_bound = ");
+ print_decu (loop->nb_iterations_likely_upper_bound, file);
+ }
if (loop->any_estimate)
{