Commit 20b4e8ae by Eric Botcazou Committed by Eric Botcazou

re PR bootstrap/13853 (Bootstrap fails when compiled with gcc 2.8.1 (gnat-3.14p))

	PR bootstrap/13853
	* cfgcleanup.c (try_optimize_cfg): Explicitly test against 0.

From-SVN: r76579
parent 062732fd
2004-01-25 Eric Botcazou <ebotcazou@act-europe.fr>
PR bootstrap/13853
* cfgcleanup.c (try_optimize_cfg): Explicitly test against 0.
2004-01-25 Kazu Hirata <kazu@cs.umass.edu> 2004-01-25 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/lib1funcs.asm (divnorm, modnorm): Optimize by * config/h8300/lib1funcs.asm (divnorm, modnorm): Optimize by
......
...@@ -1809,7 +1809,7 @@ try_optimize_cfg (int mode) ...@@ -1809,7 +1809,7 @@ try_optimize_cfg (int mode)
&& b->succ->dest != EXIT_BLOCK_PTR && b->succ->dest != EXIT_BLOCK_PTR
&& onlyjump_p (BB_END (b)) && onlyjump_p (BB_END (b))
&& try_redirect_by_replacing_jump (b->succ, b->succ->dest, && try_redirect_by_replacing_jump (b->succ, b->succ->dest,
(mode & CLEANUP_CFGLAYOUT))) (mode & CLEANUP_CFGLAYOUT) != 0))
{ {
update_forwarder_flag (b); update_forwarder_flag (b);
changed_here = true; changed_here = true;
......
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