Commit 3d040dbc by Kazu Hirata Committed by Kazu Hirata

re PR tree-optimization/21116 (tree-ssa-phiopt.c:193 has wrong translation from…

re PR tree-optimization/21116 (tree-ssa-phiopt.c:193 has wrong translation from EDGE_COUNT to single_succ_p.)

	PR tree-optimization/21116
	* tree-ssa-phiopt.c: Fix a typo.

From-SVN: r98457
parent edef5476
......@@ -2,6 +2,9 @@
* tree-ssa-phiopt.c: Fix comment typos.
PR tree-optimization/21116
* tree-ssa-phiopt.c: Fix a typo.
2005-04-19 Richard Henderson <rth@redhat.com>
* builtins.c (expand_builtin_sync_operation): Revert last change.
......
......@@ -202,7 +202,7 @@ tree_ssa_phiopt (void)
e1 = EDGE_SUCC (bb1, 0);
/* Make sure that bb1 is just a fall through. */
if (!single_succ_p (bb1) > 1
if (!single_succ_p (bb1)
|| (e1->flags & EDGE_FALLTHRU) == 0)
continue;
......
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