From 53803093d096611166267de1390d0318592944e2 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Mon, 30 May 2016 19:59:24 +0200 Subject: [PATCH] tree-cfg.c (print_loop): Print likely upper bounds. * tree-cfg.c (print_loop): Print likely upper bounds. From-SVN: r236893 --- gcc/ChangeLog | 4 ++++ gcc/tree-cfg.c | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e4816b34b14..be1d4b1bd67 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-05-30 Jan Hubicka + + * tree-cfg.c (print_loop): Print likely upper bounds. + 2016-05-30 Jan Hubicka * doc/invoke.texi (-fpeel-loops,-O3): Update documentation. diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 82f0da6c581..7fc24ba7173 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -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) { -- 2.30.2