diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-12 22:49:48 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-12 22:49:48 +0000 |
commit | 81d470352528812e190cdc7bc866279a8fb80ebb (patch) | |
tree | c1de26b1f01549c9268b8764b22ddc9d6f9a3ba0 | |
parent | 761be283054215999b71d7c5ee9a5002ea597c65 (diff) | |
download | gcc-81d470352528812e190cdc7bc866279a8fb80ebb.tar.gz |
* c-format.c: Fix comment formatting.
* c-typeck.c: Likewise.
* coverage.c: Likewise.
* cppcharset.c: Likewise.
* cpplib.c: Likewise.
* dbxout.c: Likewise.
* gcov-io.h: Likewise.
* toplev.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69276 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/c-format.c | 4 | ||||
-rw-r--r-- | gcc/c-typeck.c | 2 | ||||
-rw-r--r-- | gcc/coverage.c | 2 | ||||
-rw-r--r-- | gcc/cppcharset.c | 2 | ||||
-rw-r--r-- | gcc/cpplib.c | 2 | ||||
-rw-r--r-- | gcc/dbxout.c | 2 | ||||
-rw-r--r-- | gcc/gcov-io.h | 2 | ||||
-rw-r--r-- | gcc/toplev.c | 2 |
9 files changed, 20 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 34318eb9606..5a83f1ecc3e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,14 @@ +2003-07-12 Kazu Hirata <kazu@cs.umass.edu> + + * c-format.c: Fix comment formatting. + * c-typeck.c: Likewise. + * coverage.c: Likewise. + * cppcharset.c: Likewise. + * cpplib.c: Likewise. + * dbxout.c: Likewise. + * gcov-io.h: Likewise. + * toplev.c: Likewise. + 2003-07-12 Nathanael Nerode <neroden@gcc.gnu.org> * fixinc/inclhack.def (alpha_sbrk): Note that OpenBSD needs this diff --git a/gcc/c-format.c b/gcc/c-format.c index 0b3fa2f251c..769b039a076 100644 --- a/gcc/c-format.c +++ b/gcc/c-format.c @@ -2619,7 +2619,7 @@ init_dynamic_diag_info (void) } if (t) { - /* All specifiers taking a tree share the same struct. */ + /* All specifiers taking a tree share the same struct. */ i = find_char_info_specifier_index (cdiag_fci, 'D'); cdiag_fci[i].types[0].type = &t; cdiag_fci[i].pointer_count = 1; @@ -2639,7 +2639,7 @@ init_dynamic_diag_info (void) } if (t) { - /* All specifiers taking a tree share the same struct. */ + /* All specifiers taking a tree share the same struct. */ i = find_char_info_specifier_index (cxxdiag_fci, 'D'); cxxdiag_fci[i].types[0].type = &t; cxxdiag_fci[i].pointer_count = 1; diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 3228d044506..7564660cd01 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -641,7 +641,7 @@ tagged_types_tu_compatible_p (tree t1, tree t2, int flags) /* We have to verify that the tags of the types are the same. This is harder than it looks because this may be a typedef, so we have to go look at the original type. It may even be a typedef of a - typedef... */ + typedef... */ while (TYPE_NAME (t1) && TREE_CODE (TYPE_NAME (t1)) == TYPE_DECL) t1 = DECL_ORIGINAL_TYPE (TYPE_NAME (t1)); diff --git a/gcc/coverage.c b/gcc/coverage.c index 252331776c4..3335237a717 100644 --- a/gcc/coverage.c +++ b/gcc/coverage.c @@ -178,7 +178,7 @@ read_counts_file (void) return; } - /* Read and discard the stamp. */ + /* Read and discard the stamp. */ gcov_read_unsigned (); counts_hash = htab_create (10, diff --git a/gcc/cppcharset.c b/gcc/cppcharset.c index 763176500aa..0fc87f2ce24 100644 --- a/gcc/cppcharset.c +++ b/gcc/cppcharset.c @@ -448,7 +448,7 @@ one_utf16_to_utf8 (iconv_t bigend, const uchar **inbufp, size_t *inbytesleftp, /* Helper routine for the next few functions. The 'const' on one_conversion means that we promise not to modify what function is - pointed to, which lets the inliner see through it. */ + pointed to, which lets the inliner see through it. */ static inline bool conversion_loop (int (*const one_conversion)(iconv_t, const uchar **, size_t *, diff --git a/gcc/cpplib.c b/gcc/cpplib.c index f0096812c08..bbd6d016e01 100644 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -559,7 +559,7 @@ undefine_macros (cpp_reader *pfile, cpp_hashnode *h, if (CPP_OPTION (pfile, warn_unused_macros)) _cpp_warn_if_unused_macro (pfile, h, NULL); - /* and fall through... */ + /* and fall through... */ case NT_ASSERTION: _cpp_free_definition (h); break; diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 0fb46a924f3..618094d2d5b 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -562,7 +562,7 @@ dbxout_typedefs (tree syms) } #ifdef DBX_USE_BINCL -/* Emit BINCL stab using given name. */ +/* Emit BINCL stab using given name. */ static void emit_bincl_stab (const char *name) { diff --git a/gcc/gcov-io.h b/gcc/gcov-io.h index 018b020ec37..fd5755fea78 100644 --- a/gcc/gcov-io.h +++ b/gcc/gcov-io.h @@ -454,7 +454,7 @@ GCOV_LINKAGE struct gcov_var functions, gcov_seek & gcov_error. When a file is to be rewritten you use the functions for reading, then gcov_rewrite then the functions for writing. Your file may become corrupted if you break - these invariants. */ + these invariants. */ #if IN_LIBGCOV GCOV_LINKAGE int gcov_open (const char */*name*/); #else diff --git a/gcc/toplev.c b/gcc/toplev.c index 0369489ec54..da18f928854 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -465,7 +465,7 @@ int mem_report = 0; and to print them when we are done. */ int flag_detailed_statistics = 0; -/* A random sequence of characters, unless overridden by user. */ +/* A random sequence of characters, unless overridden by user. */ const char *flag_random_seed; /* A local time stamp derived from the time of compilation. It will be |