tree-cfg.c (print_loop): Print likely upper bounds.
authorJan Hubicka <hubicka@ucw.cz>
Mon, 30 May 2016 17:59:24 +0000 (19:59 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Mon, 30 May 2016 17:59:24 +0000 (17:59 +0000)
* tree-cfg.c (print_loop): Print likely upper bounds.

From-SVN: r236893

gcc/ChangeLog
gcc/tree-cfg.c

index e4816b34b14662f9fc6535978940ce3006b37112..be1d4b1bd67c314ee9cbce4d5a75172f95aa4725 100644 (file)
@@ -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.
index 82f0da6c5815e490eba18c37a90c031e0511a1b5..7fc24ba7173e9c16a61ba06208d94475dbd1226e 100644 (file)
@@ -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)
     {