diff options
author | Tobias Schlüter <tobi@gcc.gnu.org> | 2005-03-23 00:24:01 +0100 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2005-03-23 00:24:01 +0100 |
commit | 4aa708ba12d4f9758fc46a00240b87a7206bfbf7 (patch) | |
tree | c220162c2a5c084cdfe42a5561451726ca92778c /gcc/tree.h | |
parent | 9e9945c5b254a1ca528623ae19b68f1995f1fd52 (diff) | |
download | gcc-4aa708ba12d4f9758fc46a00240b87a7206bfbf7.zip gcc-4aa708ba12d4f9758fc46a00240b87a7206bfbf7.tar.gz gcc-4aa708ba12d4f9758fc46a00240b87a7206bfbf7.tar.bz2 |
tree.h (DECL_IGNORED_P, [...]): Clarify comments.
* tree.h (DECL_IGNORED_P, DECL_IN_SYSTEM_HEADER): Clarify comments.
Also fix a typo in a previous ChangeLog
From-SVN: r96903
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2059,8 +2059,8 @@ struct tree_binfo GTY (()) #define DECL_FROM_INLINE(NODE) (DECL_ABSTRACT_ORIGIN (NODE) != NULL_TREE \ && DECL_ABSTRACT_ORIGIN (NODE) != (NODE)) -/* Nonzero if a _DECL means that the name of this decl should be ignored - for symbolic debug purposes. */ +/* Nonzero for a given ..._DECL node means that the name of this node should + be ignored for symbolic debug purposes. */ #define DECL_IGNORED_P(NODE) (DECL_CHECK (NODE)->decl.ignored_flag) /* Nonzero for a given ..._DECL node means that this node represents an @@ -2071,8 +2071,8 @@ struct tree_binfo GTY (()) any code or allocate any data space for such instances. */ #define DECL_ABSTRACT(NODE) (DECL_CHECK (NODE)->decl.abstract_flag) -/* Nonzero if a _DECL means that no warnings should be generated just - because this decl is unused. */ +/* Nonzero for a given ..._DECL node means that no warnings should be + generated just because this node is unused. */ #define DECL_IN_SYSTEM_HEADER(NODE) \ (DECL_CHECK (NODE)->decl.in_system_header_flag) |