diff options
author | Kyrylo Tkachov <kyrylo.tkachov@arm.com> | 2015-05-01 15:35:15 +0000 |
---|---|---|
committer | Kyrylo Tkachov <ktkachov@gcc.gnu.org> | 2015-05-01 15:35:15 +0000 |
commit | 15ab4e1e79f3e9255946c7aa87a06dff7f96973b (patch) | |
tree | 2c810b436fe7f8e46bd93578ba87e7bed89c5031 | |
parent | f40694b31238785ab9765aab6943eb88eb15649b (diff) | |
download | gcc-15ab4e1e79f3e9255946c7aa87a06dff7f96973b.zip gcc-15ab4e1e79f3e9255946c7aa87a06dff7f96973b.tar.gz gcc-15ab4e1e79f3e9255946c7aa87a06dff7f96973b.tar.bz2 |
[doc] Update definition location of attribute_spec in documentation
* target.def (attribute_table): Mention that struct attribute_spec
is defined in tree-core.h rather than tree.h
* doc/tm.texi: Regenerate.
From-SVN: r222688
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/doc/tm.texi | 2 | ||||
-rw-r--r-- | gcc/target.def | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f860e99..65816c7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2015-05-01 Kyrylo Tkachov <kyrylo.tkachov@arm.com> + + * target.def (attribute_table): Mention that struct attribute_spec + is defined in tree-core.h rather than tree.h + * doc/tm.texi: Regenerate. + 2015-05-01 Richard Sandiford <richard.sandiford@arm.com> * genrecog.c (test): Rename to rtx_test. Update rest of file diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index e08b514..dd1fd22 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -9817,7 +9817,7 @@ be documented in @file{extend.texi}. @deftypevr {Target Hook} {const struct attribute_spec *} TARGET_ATTRIBUTE_TABLE If defined, this target hook points to an array of @samp{struct -attribute_spec} (defined in @file{tree.h}) specifying the machine +attribute_spec} (defined in @file{tree-core.h}) specifying the machine specific attributes for this target and some of the restrictions on the entities to which these attributes are applied and the arguments they take. diff --git a/gcc/target.def b/gcc/target.def index a00181a..329ea04 100644 --- a/gcc/target.def +++ b/gcc/target.def @@ -1975,7 +1975,7 @@ merging.", DEFHOOKPOD (attribute_table, "If defined, this target hook points to an array of @samp{struct\n\ -attribute_spec} (defined in @file{tree.h}) specifying the machine\n\ +attribute_spec} (defined in @file{tree-core.h}) specifying the machine\n\ specific attributes for this target and some of the restrictions on the\n\ entities to which these attributes are applied and the arguments they\n\ take.", |