diff options
author | Fernando Pereira <fernando@cs.ucla.edu> | 2008-07-07 20:17:37 +0000 |
---|---|---|
committer | Fernando Pereira <pronesto@gcc.gnu.org> | 2008-07-07 20:17:37 +0000 |
commit | fc93bcb6d545c44a48fb4928cebfac56390ac2bd (patch) | |
tree | 073ccbe13e2ce1f1b8f2e8899ef8e3376ed18d7e /gcc/tree-dump.c | |
parent | 2769621878cf8b7559e702707f3e2d840ac7968e (diff) | |
download | gcc-fc93bcb6d545c44a48fb4928cebfac56390ac2bd.tar.gz |
tree-ssa-structalias.c (compute_points_to_sets): Add call to dump_constraint_graph.
2008-07-07 Fernando Pereira <fernando@cs.ucla.edu>
* tree-ssa-structalias.c (compute_points_to_sets): Add call to
dump_constraint_graph.
(dump_constraint_edge): New function.
(dump_constraint_graph): New function.
(debug_constraint_graph): New function.
(dump_constraint): Removed useless comparison.
* tree-ssa-structalias.h (dump_constraint_edge): Declare.
(dump_constraint_graph): Declare.
(debug_constraint_graph): Declare.
* tree-dump.c (struct dump_option_value_info): Declare
TDF_GRAPH.
From-SVN: r137597
Diffstat (limited to 'gcc/tree-dump.c')
-rw-r--r-- | gcc/tree-dump.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c index b7363c377c0..7cc0285ff48 100644 --- a/gcc/tree-dump.c +++ b/gcc/tree-dump.c @@ -814,6 +814,7 @@ static const struct dump_option_value_info dump_options[] = {"address", TDF_ADDRESS}, {"slim", TDF_SLIM}, {"raw", TDF_RAW}, + {"graph", TDF_GRAPH}, {"details", TDF_DETAILS}, {"stats", TDF_STATS}, {"blocks", TDF_BLOCKS}, |