aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSegher Boessenkool <segher@kernel.crashing.org>2016-09-19 17:54:12 +0200
committerSegher Boessenkool <segher@gcc.gnu.org>2016-09-19 17:54:12 +0200
commitf37cb70b6b5a0af23c753086b5136e7df73bceee (patch)
treee2f6264f3ffd96b0ab8bd10cfd2b4c3b0e8c1bc0
parenta0a1009abf4802538f9f8687e99a27be0ab1dc17 (diff)
downloadgcc-f37cb70b6b5a0af23c753086b5136e7df73bceee.zip
gcc-f37cb70b6b5a0af23c753086b5136e7df73bceee.tar.gz
gcc-f37cb70b6b5a0af23c753086b5136e7df73bceee.tar.bz2
Fix lra_p text
* target.def (lra_p): Wordsmithing. * doc/tm.texi: Regenerate. From-SVN: r240236
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/doc/tm.texi2
-rw-r--r--gcc/target.def2
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 3fb3b0f..905316d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2016-09-19 Segher Boessenkool <segher@kernel.crashing.org>
+
+ * target.def (lra_p): Wordsmithing.
+ * doc/tm.texi: Regenerate.
+
2016-09-19 Jakub Jelinek <jakub@redhat.com>
Jan Hubicka <jh@suse.cz>
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi
index 8d533d5..92554d6 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 true. New ports should use LRA, and existing ports are encouraged to convert.
+A target hook which returns true if we use LRA instead of reload pass. The default version of this target hook returns 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 a4e4cbb..0e10d6f 100644
--- a/gcc/target.def
+++ b/gcc/target.def
@@ -4929,7 +4929,7 @@ 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 true. New ports\
+ The default version of this target hook returns true. New ports\
should use LRA, and existing ports are encouraged to convert.",
bool, (void),
default_lra_p)