aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpppch.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-06-23 15:27:37 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-06-23 15:27:37 +0000
commit71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d (patch)
treee01bf4ee4ed8ca0042861ba7004bed92770df135 /gcc/cpppch.c
parent164131ce2b0389a0ae7254e468c5c7bcada48b28 (diff)
downloadgcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.zip
gcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.tar.gz
gcc-71c0e7fc9636c1d99b4a2508bbc2efe3d674f72d.tar.bz2
basic-block.h: Fix comment formatting.
* 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. From-SVN: r68369
Diffstat (limited to 'gcc/cpppch.c')
-rw-r--r--gcc/cpppch.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cpppch.c b/gcc/cpppch.c
index e87abea..6b60c57 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;