This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[tree-ssa] Fix debug dump in SSA->normal pass [patch]


There should not be a debugging dump at the end of the
SSA->normal pass.  optimize_function_tree() takes care of that.


Diego.


	* tree-ssa.c (rewrite_out_of_ssa): Don't dump the optimized
	function after the SSA->normal pass.

Index: tree-ssa.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Attic/tree-ssa.c,v
retrieving revision 1.1.4.77
diff -d -u -p -r1.1.4.77 tree-ssa.c
--- tree-ssa.c	13 May 2003 19:12:23 -0000	1.1.4.77
+++ tree-ssa.c	15 May 2003 13:21:11 -0000
@@ -1703,9 +1703,6 @@ rewrite_out_of_ssa (fndecl)
   delete_tree_cfg ();
   delete_var_map (map);
   timevar_pop (TV_TREE_SSA_TO_NORMAL);
-
-  if (tree_ssa_dump_file)
-    dump_end (TDI_optimized, tree_ssa_dump_file);
 }
 
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]