summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-22 23:24:01 +0000
committertobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-22 23:24:01 +0000
commit5d4990a01ff98b4040ca26de8b8f0d9ba2cfdf19 (patch)
treec220162c2a5c084cdfe42a5561451726ca92778c
parent7a4afb3fb73098908209f1ce953ad6bb8cf72ecc (diff)
downloadppe42-gcc-5d4990a01ff98b4040ca26de8b8f0d9ba2cfdf19.tar.gz
ppe42-gcc-5d4990a01ff98b4040ca26de8b8f0d9ba2cfdf19.zip
* tree.h (DECL_IGNORED_P, DECL_IN_SYSTEM_HEADER): Clarify comments.
Also fix a typo in a previous ChangeLog git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96903 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/tree.h8
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a48df49a528..9473dc1c4c4 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2005-03-22 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de>
+
+ * tree.h (DECL_IGNORED_P, DECL_IN_SYSTEM_HEADER): Clarify comments.
+
2005-03-22 Daniel Berlin <dberlin@dberlin.org>
* c-opts.c (c_common_parse_file): Only start/end main source file
@@ -26,7 +30,7 @@
* cgraphunit.c (cgraph_estimate_size_after_inlining): Compute
call cost based on argument sizes.
- (cgraph_mark_inline_edge): Avoid inline unit from shringking by
+ (cgraph_mark_inline_edge): Avoid inline unit from shrinking by
inlining.
* params.def: (max-inline-inssn-single): Set to 450.
(max-inline-insns-auto): Set to 90.
diff --git a/gcc/tree.h b/gcc/tree.h
index 6010a47e529..41881bf08d9 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -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)
OpenPOWER on IntegriCloud