tree-core.h: Update comment about the format of NAME string passed to handler in...
authorJozef Lawrynowicz <jozef.l@mittosystems.com>
Wed, 30 May 2018 23:32:31 +0000 (23:32 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 30 May 2018 23:32:31 +0000 (17:32 -0600)
* tree-core.h: Update comment about the format of NAME string
passed to handler in attribute_spec.

From-SVN: r260982

gcc/ChangeLog
gcc/tree-core.h

index 137c4fbaf115b06729a86f926871f973e2bcc625..da3064ecf156bbe98344da89cac2add6f86c4ef6 100644 (file)
@@ -1,6 +1,9 @@
 2018-05-30  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
 
-       * gcc/config/msp430/msp430.md: Remove erroneous subreg expression from
+       * tree-core.h: Update comment about the format of NAME string
+       passed to handler in attribute_spec.
+
+       * config/msp430/msp430.md: Remove erroneous subreg expression from
        zero_extendqisi2 insn pattern. Remove msp430x ISA restriction on
        zero_extend{q,h}isi2.
 
index 478c631998cf17139081c65d81f179dfb982b67d..f7be51f0e44725a796ecce86490c1a08219312d1 100644 (file)
@@ -1942,14 +1942,14 @@ struct attribute_spec {
   bool affects_type_identity;
   /* Function to handle this attribute.  NODE points to the node to which
      the attribute is to be applied.  If a DECL, it should be modified in
-     place; if a TYPE, a copy should be created.  NAME is the name of the
-     attribute (possibly with leading or trailing __).  ARGS is the TREE_LIST
-     of the arguments (which may be NULL).  FLAGS gives further information
-     about the context of the attribute.  Afterwards, the attributes will
-     be added to the DECL_ATTRIBUTES or TYPE_ATTRIBUTES, as appropriate,
-     unless *NO_ADD_ATTRS is set to true (which should be done on error,
-     as well as in any other cases when the attributes should not be added
-     to the DECL or TYPE).  Depending on FLAGS, any attributes to be
+     place; if a TYPE, a copy should be created.  NAME is the canonicalized
+     name of the attribute i.e. without any leading or trailing underscores.
+     ARGS is the TREE_LIST of the arguments (which may be NULL).  FLAGS gives
+     further information about the context of the attribute.  Afterwards, the
+     attributes will be added to the DECL_ATTRIBUTES or TYPE_ATTRIBUTES, as
+     appropriate, unless *NO_ADD_ATTRS is set to true (which should be done on
+     error, as well as in any other cases when the attributes should not be
+     added to the DECL or TYPE).  Depending on FLAGS, any attributes to be
      applied to another type or DECL later may be returned;
      otherwise the return value should be NULL_TREE.  This pointer may be
      NULL if no special handling is required beyond the checks implied