Fix .cgraph dump number

Diego Novillo dnovillo@redhat.com
Tue Jul 5 01:25:00 GMT 2005


Found while debugging code to emit new function bodies.
Alternatively, we could start IPA dump numbers at 2.


Diego.


	* tree-dump.c (dump_files): Initialize dump number for .cgraph
	to 0.

Index: tree-dump.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-dump.c,v
retrieving revision 1.45
diff -d -u -p -r1.45 tree-dump.c
--- tree-dump.c	3 Jul 2005 06:50:48 -0000	1.45
+++ tree-dump.c	5 Jul 2005 01:22:39 -0000
@@ -712,7 +712,7 @@ static struct dump_file_info dump_files[
   {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'},



More information about the Gcc-patches mailing list