OSDN Git Service

Fix ce3/rnreg dump file ordering problem.
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 20 Feb 2004 08:38:24 +0000 (08:38 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 20 Feb 2004 08:38:24 +0000 (08:38 +0000)
* toplev.c (dump_file_index, dump_file): Put ce3 before rnreg.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78157 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/toplev.c

index 205f9d9..74f4343 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 09978fc..def8c9f 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 },