From: Segher Boessenkool Date: Wed, 14 Sep 2016 10:51:43 +0000 (+0200) Subject: Fix TARGET_LRA_P description X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=48975b3de61af4dd3cf2809bf8bc647c0ebc8971;p=gcc.git Fix TARGET_LRA_P description 2016-09-14 Segher Boessenkool * target.def (lra_p): Change commentary (for the manual) for the new default. * doc/tm.texi: Regenerate. From-SVN: r240133 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2217c77a1c0..65dc1822376 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-09-14 Segher Boessenkool + + * target.def (lra_p): Change commentary (for the manual) for the + new default. + * doc/tm.texi: Regenerate. + 2016-09-14 Segher Boessenkool * config/aarch64/aarch64.c (TARGET_LRA_P): Delete macro. diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index dc5bcd66eff..0ca00d2548d 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -2861,7 +2861,7 @@ A target hook which can change allocno class for given pseudo from @end deftypefn @deftypefn {Target Hook} bool TARGET_LRA_P (void) -A target hook which returns true if we use LRA instead of reload pass. The default version of this target hook returns always false, but new ports should use LRA. +A target hook which returns true if we use LRA instead of reload pass. The default version of this target hook returns always true. New ports should use LRA, and existing ports are encouraged to convert. @end deftypefn @deftypefn {Target Hook} int TARGET_REGISTER_PRIORITY (int) diff --git a/gcc/target.def b/gcc/target.def index 8509e7d2d30..a4e4cbb6645 100644 --- a/gcc/target.def +++ b/gcc/target.def @@ -4929,8 +4929,8 @@ DEFHOOK (lra_p, "A target hook which returns true if we use LRA instead of reload pass.\ \ - The default version of this target hook returns always false, but new\ - ports should use LRA.", + The default version of this target hook returns always true. New ports\ + should use LRA, and existing ports are encouraged to convert.", bool, (void), default_lra_p)