summaryrefslogtreecommitdiff
path: root/gcc/gimple-low.c
diff options
context:
space:
mode:
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-10 10:38:30 +0000
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-10 10:38:30 +0000
commitc4c3cd53e2ffe277ddefbd2c56f52635afdde89d (patch)
tree82d9408541093ea1d1f5bd1bb4c82743eac57876 /gcc/gimple-low.c
parent8d144a3eb868e5fea135cc87f88d0c2eda11f50a (diff)
downloadgcc-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.c2
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. */