* stmt.c (any_pending_cleanups): Further simplification.
From-SVN: r68789
This commit is contained in:
parent
43b68ce57a
commit
ce47ca44cc
@ -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>
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user