]> gcc.gnu.org Git - gcc.git/commitdiff
Allow machine dependent reorganisation pass to place information into the RTL
authorNick Clifton <nickc@cygnus.com>
Mon, 16 Aug 1999 10:06:19 +0000 (10:06 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Mon, 16 Aug 1999 10:06:19 +0000 (10:06 +0000)
dump file if it so wishes.

From-SVN: r28723

gcc/ChangeLog
gcc/toplev.c

index 1f5106db9fa81fe123cad1d56ea45e24fb30dca5..fe383948fa633aaad92c114b52b6a14ea1dd1479 100644 (file)
@@ -1,3 +1,9 @@
+Fri Aug 13 10:21:28 1999  Nick Clifton  <nickc@cygnus.com>
+
+       * toplev.c (rest_of_compilation): Allow machine dependent
+       reorganisation pass to place information into the RTL dump
+       file if it so wishes.
+
 Sun Aug 15 12:41:21 1999  Jim Wilson  <wilson@cygnus.com>
 
        * explow.c (hard_function_value): Use VOIDmode instead of
index a3cc6b5b6fbbce2eab009504525bb1cc06eca076..1f1c3f533953c4962b18377861823b4a6b79bb19 100644 (file)
@@ -4321,11 +4321,14 @@ rest_of_compilation (decl)
 
   /* If a machine dependent reorganization is needed, call it.  */
 #ifdef MACHINE_DEPENDENT_REORG
+  if (mach_dep_reorg_dump)
+    open_dump_file (".mach", decl_printable_name (decl, 2));
+
    MACHINE_DEPENDENT_REORG (insns);
 
    if (mach_dep_reorg_dump)
      {
-       dump_rtl (".mach", decl, print_rtl_with_bb, insns);
+       close_dump_file (print_rtl_with_bb, insns);
        if (graph_dump_format != no_graph)
         print_rtl_graph_with_bb (dump_base_name, ".mach", insns);
      }
This page took 0.075025 seconds and 5 git commands to generate.