fix ce3/bbro dump numbering

Richard Henderson rth@redhat.com
Thu May 8 00:17:00 GMT 2003


When we shifted where bbro was run, we didn't adjust the
dump number.  Which is extremely confusing...


r~


        * toplev.c (enum dump_file_index): Swap DFI_ce3, DFI_bbro.
        (dump_file): Likewise.

Index: toplev.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/toplev.c,v
retrieving revision 1.752
diff -u -p -u -r1.752 toplev.c
--- toplev.c	5 May 2003 18:29:26 -0000	1.752
+++ toplev.c	8 May 2003 00:12:44 -0000
@@ -253,8 +253,8 @@ enum dump_file_index
   DFI_flow2,
   DFI_peephole2,
   DFI_rnreg,
-  DFI_ce3,
   DFI_bbro,
+  DFI_ce3,
   DFI_sched2,
   DFI_stack,
   DFI_mach,
@@ -304,8 +304,8 @@ static struct dump_file_info dump_file[D
   { "flow2",	'w', 1, 0, 0 },
   { "peephole2", 'z', 1, 0, 0 },
   { "rnreg",	'n', 1, 0, 0 },
-  { "ce3",	'E', 1, 0, 0 },
   { "bbro",	'B', 1, 0, 0 },
+  { "ce3",	'E', 1, 0, 0 },
   { "sched2",	'R', 1, 0, 0 },
   { "stack",	'k', 1, 0, 0 },
   { "mach",	'M', 1, 0, 0 },



More information about the Gcc-patches mailing list