From 599bffa2f59ae2c53e3437a1ce99f721c9a8a04b Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 10 Oct 2017 00:42:08 -0600 Subject: [PATCH] targhooks.c (default_stack_clash_protection_final_dynamic_probe): Fix return type to match prototype and documentation. * targhooks.c (default_stack_clash_protection_final_dynamic_probe): Fix return type to match prototype and documentation. From-SVN: r253575 --- gcc/ChangeLog | 5 +++++ gcc/targhooks.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 202dd89..30bbeb5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-10-09 Jeff Law + + * targhooks.c (default_stack_clash_protection_final_dynamic_probe): Fix + return type to match prototype and documentation. + 2010-10-09 Segher Boessenkool * config/rs6000/rs6000.c (processor_costs): Move to ... diff --git a/gcc/targhooks.c b/gcc/targhooks.c index d56f53d..8dbf8a1 100644 --- a/gcc/targhooks.c +++ b/gcc/targhooks.c @@ -2235,7 +2235,7 @@ default_excess_precision (enum excess_precision_type ATTRIBUTE_UNUSED) return FLT_EVAL_METHOD_PROMOTE_TO_FLOAT; } -HOST_WIDE_INT +bool default_stack_clash_protection_final_dynamic_probe (rtx residual ATTRIBUTE_UNUSED) { return 0; -- 2.7.4