tree-optimize.c (execute_todo): Flush DUMP_FILE before verification.

* tree-optimize.c (execute_todo): Flush DUMP_FILE before
	verification.

From-SVN: r84639
This commit is contained in:
Diego Novillo 2004-07-13 20:39:09 +00:00 committed by Diego Novillo
parent 6c6dd4bd12
commit 2aaf3dd5b4
2 changed files with 13 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-07-13 Diego Novillo <dnovillo@redhat.com>
* tree-optimize.c (execute_todo): Flush DUMP_FILE before
verification.
2004-07-13 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (s390_gimplify_va_arg): Use size_int instead

View File

@ -353,8 +353,14 @@ execute_todo (unsigned int flags)
}
if ((flags & TODO_dump_func) && dump_file)
dump_function_to_file (current_function_decl,
dump_file, dump_flags);
{
dump_function_to_file (current_function_decl,
dump_file, dump_flags);
/* Flush the file. If verification fails, we won't be able to
close the file before aborting. */
fflush (dump_file);
}
if (flags & TODO_ggc_collect)
ggc_collect ();