Commit aa2645a0 by Zdenek Dvorak Committed by Zdenek Dvorak

tree-ssa-threadupdate.c (create_edge_and_update_destination_phis): Scan the new…

tree-ssa-threadupdate.c (create_edge_and_update_destination_phis): Scan the new edge for loop exit info.

	* tree-ssa-threadupdate.c (create_edge_and_update_destination_phis):
	Scan the new edge for loop exit info.

From-SVN: r126934
parent 9faca04e
2007-07-25 Zdenek Dvorak <dvorakz@suse.cz>
* tree-ssa-threadupdate.c (create_edge_and_update_destination_phis):
Scan the new edge for loop exit info.
2007-07-25 Andreas Tobler <a.tobler@schweiz.org> 2007-07-25 Andreas Tobler <a.tobler@schweiz.org>
* config/darwin.c: Include debug.h. * config/darwin.c: Include debug.h.
......
...@@ -313,6 +313,7 @@ create_edge_and_update_destination_phis (struct redirection_data *rd) ...@@ -313,6 +313,7 @@ create_edge_and_update_destination_phis (struct redirection_data *rd)
edge e = make_edge (rd->dup_block, rd->outgoing_edge->dest, EDGE_FALLTHRU); edge e = make_edge (rd->dup_block, rd->outgoing_edge->dest, EDGE_FALLTHRU);
tree phi; tree phi;
rescan_loop_exit (e, true, false);
e->probability = REG_BR_PROB_BASE; e->probability = REG_BR_PROB_BASE;
e->count = rd->dup_block->count; e->count = rd->dup_block->count;
e->aux = rd->outgoing_edge->aux; e->aux = rd->outgoing_edge->aux;
......
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