aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple-low.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2014-07-10 10:38:30 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2014-07-10 10:38:30 +0000
commitd764963b54885cdf3604e54717b1a137492d7415 (patch)
tree82d9408541093ea1d1f5bd1bb4c82743eac57876 /gcc/gimple-low.c
parent56710419ba3361dca740bfa1dc29be0d959246de (diff)
downloadgcc-d764963b54885cdf3604e54717b1a137492d7415.zip
gcc-d764963b54885cdf3604e54717b1a137492d7415.tar.gz
gcc-d764963b54885cdf3604e54717b1a137492d7415.tar.bz2
re PR middle-end/53590 (compiler fails to generate SIMD instruction for FP division)
PR middle-end/53590 * function.c (allocate_struct_function): Revert r188667 change. * gimple-low.c (lower_builtin_setjmp): Use properly-typed constant. From-SVN: r212424
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 6a5b2e1..c8a6e6b 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. */