diff options
author | Tom Tromey <tromey@redhat.com> | 2007-08-24 21:10:41 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2007-08-24 21:10:41 +0000 |
commit | f9837879d58101f62cd52cc7d17b5dd76b975978 (patch) | |
tree | ddab928967370ac499db2af2cfb08b1bc7d67816 /gcc/varpool.c | |
parent | 787b0d199b714e0a8aceaae931548aa5076bcd06 (diff) | |
download | gcc-f9837879d58101f62cd52cc7d17b5dd76b975978.tar.gz |
varpool.c (varpool_last_needed_node): Fix comment typo.
* varpool.c (varpool_last_needed_node): Fix comment typo.
* c-decl.c (duplicate_decls): Fix comment typo.
(clone_underlying_type): Update comment.
From-SVN: r127788
Diffstat (limited to 'gcc/varpool.c')
-rw-r--r-- | gcc/varpool.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/varpool.c b/gcc/varpool.c index 9be16417de4..719f212cbf5 100644 --- a/gcc/varpool.c +++ b/gcc/varpool.c @@ -57,8 +57,9 @@ struct varpool_node *varpool_nodes; The queue is maintained via mark_needed_node, linked via node->next_needed pointer. - LAST_NNEDED_NODE points to the end of queue, so it can be maintained in forward - order. QTY is needed to make it friendly to PCH. + LAST_NEEDED_NODE points to the end of queue, so it can be + maintained in forward order. QTY is needed to make it friendly to + PCH. During unit-at-a-time compilation we construct the queue of needed variables twice: first time it is during cgraph construction, second time it is at the |