c-format.c: Fix comment formatting.
authorKazu Hirata <kazu@cs.umass.edu>
Sat, 12 Jul 2003 22:49:48 +0000 (22:49 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Sat, 12 Jul 2003 22:49:48 +0000 (22:49 +0000)
* 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.

From-SVN: r69276

gcc/ChangeLog
gcc/c-format.c
gcc/c-typeck.c
gcc/coverage.c
gcc/cppcharset.c
gcc/cpplib.c
gcc/dbxout.c
gcc/gcov-io.h
gcc/toplev.c

index 34318eb96068915be13da303f846bc2037df943f..5a83f1ecc3efc1b5607fbe6d726fac17768004a3 100644 (file)
@@ -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 
index 0b3fa2f251ce9e7cba54eb7a49e134fe73c2f0fb..769b039a07662d526c7489f60e7e83187db13020 100644 (file)
@@ -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;
index 3228d044506653bdbe3232c31a15fa5d2451f073..7564660cd012094dea9c8e66b949c4079b3b42c3 100644 (file)
@@ -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));
 
index 252331776c4a116fff81d949d323ec29d71a683a..3335237a717f35f2928aa551a8354699f506145c 100644 (file)
@@ -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,
index 763176500aa7d67a9e6aded12b630ff2d955b3c2..0fc87f2ce24a073bd11b9de392dc14fcae1b13ec 100644 (file)
@@ -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 *,
index f0096812c08e87925e3ee3087c5393a678670a34..bbd6d016e01166a824f37ade784594f08d5d568f 100644 (file)
@@ -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;
index 0fb46a924f34bacd49c568588949a5750e5dab1e..618094d2d5b7eb8ae60780ba1026389f633f303b 100644 (file)
@@ -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)
 {
index 018b020ec378f0feff96e6861b6f45f4047d8c22..fd5755fea78e28769cab8bfd926498867f10972a 100644 (file)
@@ -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
index 0369489ec548d392a9e8475800ee1a88920eafd9..da18f92885426f2ce56a4a0b1ae3cd4f3cb82ee0 100644 (file)
@@ -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