This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Fix comment in tree.h
- From: Tobias Schlüter <tobias dot schlueter at physik dot uni-muenchen dot de>
- To: patch <gcc-patches at gcc dot gnu dot org>
- Date: Sat, 12 Mar 2005 18:22:41 +0100
- Subject: Fix comment in tree.h
This comment has been in tree.h since CVS version 1.1, but it doesn't seem to
make much sense to me. Since the comment has been like this forever I'm not
committing this as obvious. Is this change ok, or can a DECL "mean" that
something should be emitted to the debug info?
- Tobi
2005-03-12 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
* tree.h (DECL_IGNORED_P): Fix comment.
Index: ../tree.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree.h,v
retrieving revision 1.695
diff -u -p -r1.695 tree.h
--- ../tree.h 5 Mar 2005 20:21:28 -0000 1.695
+++ ../tree.h 12 Mar 2005 17:09:30 -0000
@@ -2059,7 +2059,7 @@ 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
+/* Nonzero means that the name of the _DECL should be ignored
for symbolic debug purposes. */
#define DECL_IGNORED_P(NODE) (DECL_CHECK (NODE)->decl.ignored_flag)