Commit 2aaf3dd5 by Diego Novillo Committed by Diego Novillo

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


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

From-SVN: r84639
parent 6c6dd4bd
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> 2004-07-13 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (s390_gimplify_va_arg): Use size_int instead * config/s390/s390.c (s390_gimplify_va_arg): Use size_int instead
......
...@@ -353,8 +353,14 @@ execute_todo (unsigned int flags) ...@@ -353,8 +353,14 @@ execute_todo (unsigned int flags)
} }
if ((flags & TODO_dump_func) && dump_file) 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) if (flags & TODO_ggc_collect)
ggc_collect (); ggc_collect ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment