tree-cfg.c (print_loop): Print likely upper bounds.
* tree-cfg.c (print_loop): Print likely upper bounds. From-SVN: r236893
This commit is contained in:
parent
a448ff403b
commit
53803093d0
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
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.
|
||||
|
|
|
@ -7780,6 +7780,11 @@ print_loop (FILE *file, struct loop *loop, int indent, int verbosity)
|
|||
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue