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
+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...
 
 static void
 gimple_push_condition (void)
 {
+#ifdef ENABLE_CHECKING
+  if (gimplify_ctxp->conditions == 0)
+    gcc_assert (!gimplify_ctxp->conditional_cleanups);
+#endif
   ++(gimplify_ctxp->conditions);
 }