mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 19:51:34 +08:00
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:
parent
6c6dd4bd12
commit
2aaf3dd5b4
@ -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
|
||||
|
@ -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 ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user