Fix ce3/rnreg dump file ordering problem.
authorJames E Wilson <wilson@specifixinc.com>
Fri, 20 Feb 2004 08:38:24 +0000 (08:38 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Fri, 20 Feb 2004 08:38:24 +0000 (00:38 -0800)
* toplev.c (dump_file_index, dump_file): Put ce3 before rnreg.

From-SVN: r78157

gcc/ChangeLog
gcc/toplev.c

index 205f9d989869a45ddeb1dccda9f21ee88cfd085d..74f4343b91b69e170d1940d5ebfa2cd05e1fe317 100644 (file)
@@ -1,3 +1,7 @@
+2004-02-20  James E Wilson  <wilson@specifixinc.com>
+
+       * toplev.c (dump_file_index, dump_file): Put ce3 before rnreg.
+
 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
 
        * gcc.c (process_command): Allow translation of the copyright
index 09978fccb5a37f00b6835e9c7bcf64cad1b9b520..def8c9fae9f1d92499103e3c0595b797e3c2dc62 100644 (file)
@@ -284,8 +284,8 @@ enum dump_file_index
   DFI_postreload,
   DFI_flow2,
   DFI_peephole2,
-  DFI_rnreg,
   DFI_ce3,
+  DFI_rnreg,
   DFI_bbro,
   DFI_branch_target_load,
   DFI_sched2,
@@ -336,8 +336,8 @@ static struct dump_file_info dump_file[DFI_MAX] =
   { "postreload", 'o', 1, 0, 0 },
   { "flow2",   'w', 1, 0, 0 },
   { "peephole2", 'z', 1, 0, 0 },
-  { "rnreg",   'n', 1, 0, 0 },
   { "ce3",     'E', 1, 0, 0 },
+  { "rnreg",   'n', 1, 0, 0 },
   { "bbro",    'B', 1, 0, 0 },
   { "btl",     'd', 1, 0, 0 }, /* Yes, duplicate enable switch.  */
   { "sched2",  'R', 1, 0, 0 },