* stmt.c (any_pending_cleanups): Further simplification.

From-SVN: r68789
This commit is contained in:
Jeff Law 2003-07-01 13:45:30 -06:00 committed by Jeff Law
parent 43b68ce57a
commit ce47ca44cc
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
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>

View File

@ -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)