diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-10 10:38:30 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-10 10:38:30 +0000 |
commit | c4c3cd53e2ffe277ddefbd2c56f52635afdde89d (patch) | |
tree | 82d9408541093ea1d1f5bd1bb4c82743eac57876 /gcc/gimple-low.c | |
parent | 8d144a3eb868e5fea135cc87f88d0c2eda11f50a (diff) | |
download | gcc-c4c3cd53e2ffe277ddefbd2c56f52635afdde89d.tar.gz |
PR middle-end/53590
* function.c (allocate_struct_function): Revert r188667 change.
* gimple-low.c (lower_builtin_setjmp): Use properly-typed constant.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212424 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gimple-low.c')
-rw-r--r-- | gcc/gimple-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-low.c b/gcc/gimple-low.c index 6a5b2e1f4b2..c8a6e6b57fb 100644 --- a/gcc/gimple-low.c +++ b/gcc/gimple-low.c @@ -720,7 +720,7 @@ lower_builtin_setjmp (gimple_stmt_iterator *gsi) these builtins are modelled as non-local label jumps to the label that is passed to these two builtins, so pretend we have a non-local label during GIMPLE passes too. See PR60003. */ - cfun->has_nonlocal_label = true; + cfun->has_nonlocal_label = 1; /* NEXT_LABEL is the label __builtin_longjmp will jump to. Its address is passed to both __builtin_setjmp_setup and __builtin_setjmp_receiver. */ |