diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-17 22:01:23 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-17 22:01:23 +0000 |
commit | 87a9ad110d37ea3acc35da461f103721333c6588 (patch) | |
tree | 9b627a788d95d6fe1744e179f42c17925b07a34f /gcc/expr.c | |
parent | dbc71562650f7f4e925151171f2856eb5753e696 (diff) | |
download | ppe42-gcc-87a9ad110d37ea3acc35da461f103721333c6588.tar.gz ppe42-gcc-87a9ad110d37ea3acc35da461f103721333c6588.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29484 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index daa06d0e849..880e347a68e 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; |