diff options
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r-- | gcc/c-semantics.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c index 63b4b14..6a963a9 100644 --- a/gcc/c-semantics.c +++ b/gcc/c-semantics.c @@ -666,7 +666,17 @@ void genrtl_compound_stmt (t) tree t; { +#ifdef ENABLE_CHECKING + struct nesting *n = current_nesting_level (); +#endif + expand_stmt (COMPOUND_BODY (t)); + +#ifdef ENABLE_CHECKING + /* Make sure that we've pushed and popped the same number of levels. */ + if (n != current_nesting_level ()) + abort (); +#endif } /* Generate the RTL for an ASM_STMT. */ |