Flush stdout/stderr in fatal_init.
authorMichael Meissner <meissner@gcc.gnu.org>
Sat, 24 Feb 1996 15:02:21 +0000 (15:02 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Sat, 24 Feb 1996 15:02:21 +0000 (15:02 +0000)
From-SVN: r11345

gcc/toplev.c

index 052f703..ad5fe75 100644 (file)
@@ -936,6 +936,8 @@ fatal_insn (message, insn)
     fflush (dbr_sched_dump_file);
   if (stack_reg_dump_file)
     fflush (stack_reg_dump_file);
+  fflush (stdout);
+  fflush (stderr);
   abort ();
 }