Commit ce47ca44 by Jeff Law Committed by Jeff Law

* stmt.c (any_pending_cleanups): Further simplification.

From-SVN: r68789
parent 43b68ce5
2003-07-01 Jeff Law <law@redhat.com>
* stmt.c (any_pending_cleanups): Remove another redundant test.
2003-07-01 David Edelsohn <edelsohn@gnu.org>
J"orn Rennecke <joern.rennecke@superh.com>
......
......@@ -4391,8 +4391,8 @@ any_pending_cleanups ()
if (block_stack->data.block.cleanups != NULL)
return 1;
if (block_stack->data.block.cleanups == 0
&& block_stack->data.block.outer_cleanups == 0)
if (block_stack->data.block.outer_cleanups == 0)
return 0;
for (block = block_stack->next; block; block = block->next)
......
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