Commit d775bc45 by Andrew Pinski Committed by Andrew Pinski

gimplify.c (gimple_push_condition): Make sure that we don't have any saved condition cleanup if...

2004-10-11  Andrew Pinski  <pinskia@physics.uc.edu>

        * gimplify.c (gimple_push_condition): Make sure that we don't
        have any saved condition cleanup if we were at the top level.

From-SVN: r88877
parent 6b34e55e
2004-10-11 Andrew Pinski <pinskia@physics.uc.edu>
* gimplify.c (gimple_push_condition): Make sure that we don't
have any saved condition cleanup if we were at the top level.
2004-10-11 Richard Sandiford <rsandifo@redhat.com>
* config/frv/frv.md (*adddi3_internal): Change name to...
......
......@@ -191,6 +191,10 @@ gimple_conditional_context (void)
static void
gimple_push_condition (void)
{
#ifdef ENABLE_CHECKING
if (gimplify_ctxp->conditions == 0)
gcc_assert (!gimplify_ctxp->conditional_cleanups);
#endif
++(gimplify_ctxp->conditions);
}
......
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