toplev.c (compile_file): Move comment for opening output file to just before the...
authorJeffrey A Law <law@cygnus.com>
Fri, 11 May 2001 22:00:23 +0000 (22:00 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 11 May 2001 22:00:23 +0000 (16:00 -0600)
       * toplev.c (compile_file): Move comment for opening output
        file to just before the code that opens the output file.

From-SVN: r41975

gcc/ChangeLog
gcc/toplev.c

index 04297a66b3932fbd6627a889eaa28b12e036ccc2..d5acce97fc1f40fda229d58b4f590110564a01d8 100644 (file)
@@ -1,3 +1,8 @@
+Fri May 11 15:50:13 2001  Jeffrey A Law  (law@cygnus.com)
+
+       * toplev.c (compile_file): Move comment for opening output
+       file to just before the code that opens the output file.
+
 2001-05-11  Jakub Jelinek  <jakub@redhat.com>
 
        * regmove.c (regmove_optimize): Suppress the optimization for
index 31e6387f1175114a2e436f71b9350d7d42f53b55..bec26c16703c085ca71712cc120b0fba610147ec 100644 (file)
@@ -2149,6 +2149,10 @@ compile_file (name)
   init_timevar ();
   timevar_start (TV_TOTAL);
 
+  /* Open assembler code output file.  Do this even if -fsyntax-only is on,
+     because then the driver will have provided the name of a temporary
+     file or bit bucket for us.  */
+
   if (! name_specified && asm_file_name == 0)
     asm_out_file = stdout;
   else
@@ -2210,10 +2214,6 @@ compile_file (name)
        fatal_io_error ("can't open %s", aux_info_file_name);
     }
 
-  /* Open assembler code output file.  Do this even if -fsyntax-only is on,
-     because then the driver will have provided the name of a temporary
-     file or bit bucket for us.  */
-
 #ifdef IO_BUFFER_SIZE
   setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
            _IOFBF, IO_BUFFER_SIZE);