aboutsummaryrefslogtreecommitdiff
path: root/gcc/ChangeLog
diff options
context:
space:
mode:
authorSteven Bosscher <steven@gcc.gnu.org>2012-12-12 13:21:41 +0000
committerSteven Bosscher <steven@gcc.gnu.org>2012-12-12 13:21:41 +0000
commit13475df132847150db59393cc88cd12915cef52f (patch)
tree0065c0275ba2790fa72c6483563e1ce5917c5a6f /gcc/ChangeLog
parentaf9acf911f1f6e0511414fa4d148a5e13edde08a (diff)
downloadgcc-13475df132847150db59393cc88cd12915cef52f.zip
gcc-13475df132847150db59393cc88cd12915cef52f.tar.gz
gcc-13475df132847150db59393cc88cd12915cef52f.tar.bz2
graph.c: Include sbitmap.h and cfgloop.h.
* graph.c: Include sbitmap.h and cfgloop.h. (draw_cfg_nodes_no_loops): New function to dump basic blocks in topological order if the function does not have a loop tree. Handle unreachable blocks also. (draw_cfg_nodes_for_loop): New function to dump basic blocks in one loop tree node as a named cluster of nodes. (draw_cfg_nodes): New function to draw all CFG nodes. (draw_cfg_edges): New function to draw all CFG edges. (print_graph_cfg): Simplify using the new functions. * Makefile.in (graph.o): Fix dependencies. From-SVN: r194446
Diffstat (limited to 'gcc/ChangeLog')
-rw-r--r--gcc/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 61e19df..80e60d5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,18 @@
2012-12-12 Steven Bosscher <steven@gcc.gnu.org>
+ * graph.c: Include sbitmap.h and cfgloop.h.
+ (draw_cfg_nodes_no_loops): New function to dump basic blocks in
+ topological order if the function does not have a loop tree.
+ Handle unreachable blocks also.
+ (draw_cfg_nodes_for_loop): New function to dump basic blocks in
+ one loop tree node as a named cluster of nodes.
+ (draw_cfg_nodes): New function to draw all CFG nodes.
+ (draw_cfg_edges): New function to draw all CFG edges.
+ (print_graph_cfg): Simplify using the new functions.
+ * Makefile.in (graph.o): Fix dependencies.
+
+2012-12-12 Steven Bosscher <steven@gcc.gnu.org>
+
* dumpfile.h (enum tree_dump_index): Remove TDI_vcg.
* dumpfile.c (dump_files[]): Remove entry for TDI_vcg.
* tree-cfg.c (gimple_cfg2vcg): Remove.