Commit 3b5ee6a4 by Richard Guenther Committed by Richard Biener

tree-ssa-sink.c (execute_sink_code): Calculate CDI_DOMINATORS and CDI_POST_DOMINATORS separately.

2007-04-23  Richard Guenther  <rguenther@suse.de>

	* tree-ssa-sink.c (execute_sink_code): Calculate CDI_DOMINATORS
	and CDI_POST_DOMINATORS separately.

From-SVN: r124065
parent 6d16b6e7
2007-04-23 Richard Guenther <rguenther@suse.de>
* tree-ssa-sink.c (execute_sink_code): Calculate CDI_DOMINATORS
and CDI_POST_DOMINATORS separately.
2007-04-23 Nick Clifton <nickc@redhat.com>
* c.opt (Wformat-contains-nul): Add warning attribute.
......
......@@ -527,7 +527,8 @@ execute_sink_code (void)
connect_infinite_loops_to_exit ();
memset (&sink_stats, 0, sizeof (sink_stats));
calculate_dominance_info (CDI_DOMINATORS | CDI_POST_DOMINATORS);
calculate_dominance_info (CDI_DOMINATORS);
calculate_dominance_info (CDI_POST_DOMINATORS);
sink_code_in_bb (EXIT_BLOCK_PTR);
if (dump_file && (dump_flags & TDF_STATS))
fprintf (dump_file, "Sunk statements:%d\n", sink_stats.sunk);
......
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