diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-23 15:27:37 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-23 15:27:37 +0000 |
commit | 6473f3f492e7ef2311965b411e39dc9c0b701c3d (patch) | |
tree | e01bf4ee4ed8ca0042861ba7004bed92770df135 /gcc/cpppch.c | |
parent | f971c6043ff67ab9ae8dd71be0e189725a8cc8e4 (diff) | |
download | ppe42-gcc-6473f3f492e7ef2311965b411e39dc9c0b701c3d.tar.gz ppe42-gcc-6473f3f492e7ef2311965b411e39dc9c0b701c3d.zip |
* basic-block.h: Fix comment formatting.
* bt-load.c: Likewise.
* builtins.c: Likewise.
* c-common.c: Likewise.
* c-common.h: Likewise.
* c-format.c: Likewise.
* coverage.c: Likewise.
* cpplib.h: Likewise.
* cpppch.c: Likewise.
* dbxout.c: Likewise.
* diagnostic.c: Likewise.
* dwarf2out.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* gcc.c: Likewise.
* gcov-io.c: Likewise.
* gcov-io.h: Likewise.
* gcov.c: Likewise.
* profile.c: Likewise.
* real.h: Likewise.
* sched-deps.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68369 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpppch.c')
-rw-r--r-- | gcc/cpppch.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cpppch.c b/gcc/cpppch.c index e87abead4e8..6b60c57eaac 100644 --- a/gcc/cpppch.c +++ b/gcc/cpppch.c @@ -109,7 +109,7 @@ struct cpp_savedstate size_t hashsize; /* Number of definitions */ size_t n_defs; - /* Array of definitions. In cpp_write_pch_deps it is used for sorting. */ + /* Array of definitions. In cpp_write_pch_deps it is used for sorting. */ cpp_hashnode **defs; /* Space for the next definition. Definitions are null-terminated strings. */ @@ -244,7 +244,7 @@ count_defs (cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_hashnode *hn, void *ss_p) } } -/* Collect the identifiers into the state's string table. */ +/* Collect the identifiers into the state's string table. */ static int write_defs (cpp_reader *pfile ATTRIBUTE_UNUSED, cpp_hashnode *hn, void *ss_p) { @@ -314,7 +314,7 @@ cpp_write_pch_deps (cpp_reader *r, FILE *f) ss->n_defs = 0; cpp_forall_identifiers (r, write_defs, ss); - /* Sort the list, copy it into a buffer, and write it out. */ + /* Sort the list, copy it into a buffer, and write it out. */ qsort (ss->defs, ss->n_defs, sizeof (cpp_hashnode *), &comp_hashnodes); definedstrs = ss->definedstrs = xmalloc (ss->hashsize); for (i = 0; i < ss->n_defs; ++i) @@ -496,7 +496,7 @@ cpp_valid_state (cpp_reader *r, const char *name, int fd) qsort (nl.defs, nl.n_defs, sizeof (cpp_hashnode *), &comp_hashnodes); /* Loop through nl.defs and undeftab, both of which are sorted lists. - There should be no matches. */ + There should be no matches. */ first = undeftab; last = undeftab + m.definition_length; i = 0; |