Commit 53803093 by Jan Hubicka Committed by Jan Hubicka

tree-cfg.c (print_loop): Print likely upper bounds.


	* tree-cfg.c (print_loop): Print likely upper bounds.

From-SVN: r236893
parent a448ff40
2016-05-30 Jan Hubicka <hubicka@ucw.cz> 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. * doc/invoke.texi (-fpeel-loops,-O3): Update documentation.
* opts.c (default_options): Enable peel loops at -O3. * opts.c (default_options): Enable peel loops at -O3.
......
...@@ -7780,6 +7780,11 @@ print_loop (FILE *file, struct loop *loop, int indent, int verbosity) ...@@ -7780,6 +7780,11 @@ print_loop (FILE *file, struct loop *loop, int indent, int verbosity)
fprintf (file, ", upper_bound = "); fprintf (file, ", upper_bound = ");
print_decu (loop->nb_iterations_upper_bound, file); 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) if (loop->any_estimate)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment