aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>1999-09-17 22:01:23 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-09-17 22:01:23 +0000
commit8e91754ed432246436075871d84d87de2390c405 (patch)
tree9b627a788d95d6fe1744e179f42c17925b07a34f /gcc/expr.c
parent05ca5990713469bc7ca0b473c10d9698d688cf6b (diff)
downloadgcc-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/expr.c')
-rw-r--r--gcc/expr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index daa06d0..880e347 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -6104,7 +6104,7 @@ expand_expr (exp, target, tmode, modifier)
/* Need to open a binding contour here because
if there are any cleanups they must be contained here. */
- expand_start_bindings (0);
+ expand_start_bindings (2);
/* Mark the corresponding BLOCK for output in its proper place. */
if (TREE_OPERAND (exp, 2) != 0
@@ -6793,7 +6793,7 @@ expand_expr (exp, target, tmode, modifier)
{
/* Start a new binding layer that will keep track of all cleanup
actions to be performed. */
- expand_start_bindings (0);
+ expand_start_bindings (2);
target_temp_slot_level = temp_slot_level;
@@ -8185,7 +8185,7 @@ expand_expr (exp, target, tmode, modifier)
/* Start a new binding layer that will keep track of all cleanup
actions to be performed. */
- expand_start_bindings (0);
+ expand_start_bindings (2);
target_temp_slot_level = temp_slot_level;