diff options
| author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-02 02:04:27 +0000 |
|---|---|---|
| committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-02 02:04:27 +0000 |
| commit | 18df45ce8e77e95bc7a65058b5b175ebdc7aa2a9 (patch) | |
| tree | fc82a2c17ff76a8ffde9cd4bdcb210afed9f9803 /gcc/expr.c | |
| parent | bb09d86cb5a933f47e5bc606fc61faa6bcfa5e1f (diff) | |
| download | ppe42-gcc-18df45ce8e77e95bc7a65058b5b175ebdc7aa2a9.tar.gz ppe42-gcc-18df45ce8e77e95bc7a65058b5b175ebdc7aa2a9.zip | |
* expr.c (expand_expr): When compiling LABELED_BLOCK_EXPR,
call do_pending_stack_adjust before emiting label.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41753 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.c')
| -rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/expr.c b/gcc/expr.c index 2ad473c3abd..0ef52f5d9ce 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -6603,6 +6603,8 @@ expand_expr (exp, target, tmode, modifier) case LABELED_BLOCK_EXPR: if (LABELED_BLOCK_BODY (exp)) expand_expr_stmt (LABELED_BLOCK_BODY (exp)); + /* Should perhaps use expand_label, but this is simpler and safer. */ + do_pending_stack_adjust (); emit_label (label_rtx (LABELED_BLOCK_LABEL (exp))); return const0_rtx; |

