diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-09-17 22:01:23 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-17 22:01:23 +0000 |
commit | 8e91754ed432246436075871d84d87de2390c405 (patch) | |
tree | 9b627a788d95d6fe1744e179f42c17925b07a34f /gcc/except.c | |
parent | 05ca5990713469bc7ca0b473c10d9698d688cf6b (diff) | |
download | gcc-8e91754ed432246436075871d84d87de2390c405.zip gcc-8e91754ed432246436075871d84d87de2390c405.tar.gz gcc-8e91754ed432246436075871d84d87de2390c405.tar.bz2 |
stmt.c (expand_start_bindings): Allow callers to pass a flag indicating that no NOTE_INSN_BLOCK_BEG note is...
* stmt.c (expand_start_bindings): Allow callers to pass a flag
indicating that no NOTE_INSN_BLOCK_BEG note is required.
(expand_start_target_temps): Use it.
* except.c (expand_eh_region_start_for_decl): Likewise.
* expr.c (expand_expr): Likewise.
From-SVN: r29484
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.c b/gcc/except.c index f063c9a..3ecf7fc 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -1418,7 +1418,7 @@ expand_eh_region_start_for_decl (decl) /* We need a new block to record the start and end of the dynamic handler chain. We also want to prevent jumping into a try block. */ - expand_start_bindings (0); + expand_start_bindings (2); /* But we don't need or want a new temporary level. */ pop_temp_slots (); |