aboutsummaryrefslogtreecommitdiff
path: root/gcc/explow.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2016-03-12 11:32:54 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2016-03-12 11:32:54 +0000
commit0529235de5d3a6015a1031f2761d1580cc8c20fa (patch)
treeaa5518b7e4f38b4b97980697060af4ff059ecb56 /gcc/explow.c
parent3f1e5d3afe4d01a277747fe74fc01859139576ca (diff)
downloadgcc-0529235de5d3a6015a1031f2761d1580cc8c20fa.zip
gcc-0529235de5d3a6015a1031f2761d1580cc8c20fa.tar.gz
gcc-0529235de5d3a6015a1031f2761d1580cc8c20fa.tar.bz2
re PR ada/70017 (c52103x and c52104x test failure on s390x)
PR ada/70017 * calls.c (emit_library_call_value_1): Clear the ECF_NOTHROW flag if the libcall is LCT_THROW. * explow.c (probe_stack_range): Pass LCT_THROW to emit_library_call for the checking routine. From-SVN: r234160
Diffstat (limited to 'gcc/explow.c')
-rw-r--r--gcc/explow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/explow.c b/gcc/explow.c
index cd7c568..249318f 100644
--- a/gcc/explow.c
+++ b/gcc/explow.c
@@ -1566,7 +1566,7 @@ probe_stack_range (HOST_WIDE_INT first, rtx size)
stack_pointer_rtx,
plus_constant (Pmode,
size, first)));
- emit_library_call (stack_check_libfunc, LCT_NORMAL, VOIDmode, 1, addr,
+ emit_library_call (stack_check_libfunc, LCT_THROW, VOIDmode, 1, addr,
Pmode);
}