summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree-dump.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 540f3e60f34..60a081b9385 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,10 @@
2005-07-04 Diego Novillo <dnovillo@redhat.com>
+ * tree-dump.c (dump_files): Initialize dump number for .cgraph
+ to 0.
+
+2005-07-04 Diego Novillo <dnovillo@redhat.com>
+
* tree-ssa-structalias.c: Don't include expr.h.
2005-07-04 Diego Novillo <dnovillo@redhat.com>
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c
index a69970ece93..23fbf07103a 100644
--- a/gcc/tree-dump.c
+++ b/gcc/tree-dump.c
@@ -712,7 +712,7 @@ static struct dump_file_info dump_files[TDI_end] =
{NULL, "rtl-all", NULL, TDF_RTL, 0, 0, 0},
{NULL, "ipa-all", NULL, TDF_IPA, 0, 0, 0},
- { ".cgraph", "ipa-cgraph", NULL, TDF_IPA, 0, 1, 0},
+ { ".cgraph", "ipa-cgraph", NULL, TDF_IPA, 0, 0, 0},
{ ".sibling", "rtl-sibling", NULL, TDF_RTL, 0, 1, 'i'},
{ ".eh", "rtl-eh", NULL, TDF_RTL, 0, 2, 'h'},