This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] gcc/*.[ch]: Fix comment formatting.


Hi,

Committed as obvious.

Kazu Hirata

2004-11-03  Kazu Hirata  <kazu@cs.umass.edu>

	* bitmap.h, dbxout.c, tree-mudflap.c: Fix comment formatting.

Index: bitmap.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/bitmap.h,v
retrieving revision 1.42
diff -u -d -p -r1.42 bitmap.h
--- bitmap.h	2 Nov 2004 10:00:07 -0000	1.42
+++ bitmap.h	3 Nov 2004 03:16:03 -0000
@@ -111,7 +111,7 @@ extern int bitmap_operation (bitmap, bit
 #define bitmap_xor_into(DST_SRC,B) (void)bitmap_operation (DST_SRC,DST_SRC,B,BITMAP_XOR)
 
 /* `or' into one bitmap the `and' of a second bitmap witih the complement
-   of a third. Return nonzero if the bitmap changes. */
+   of a third. Return nonzero if the bitmap changes.  */
 extern bool bitmap_ior_and_compl_into (bitmap, bitmap, bitmap);
 extern bool bitmap_ior_and_compl (bitmap, bitmap, bitmap, bitmap);
 
Index: dbxout.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/dbxout.c,v
retrieving revision 1.214
diff -u -d -p -r1.214 dbxout.c
--- dbxout.c	28 Oct 2004 21:00:57 -0000	1.214
+++ dbxout.c	3 Nov 2004 03:16:04 -0000
@@ -3091,7 +3091,7 @@ dbxout_parms (tree parms)
 	       That is, its address was passed in a register.
 	       Output it as if it lived in that register.
 	       The debugger will know from the type
-	       that it was actually passed by invisible reference. */
+	       that it was actually passed by invisible reference.  */
 
 	    code = DBX_REGPARM_STABS_CODE;
  
Index: tree-mudflap.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-mudflap.c,v
retrieving revision 2.31
diff -u -d -p -r2.31 tree-mudflap.c
--- tree-mudflap.c	28 Oct 2004 21:24:33 -0000	2.31
+++ tree-mudflap.c	3 Nov 2004 03:16:04 -0000
@@ -379,7 +379,7 @@ mudflap_init (void)
   mf_cache_mask_decl = mf_make_builtin (VAR_DECL, "__mf_lc_mask",
                                         mf_uintptr_type);
   /* Don't process these in mudflap_enqueue_decl, should they come by
-     there for some reason. */
+     there for some reason.  */
   mf_mark (mf_cache_array_decl);
   mf_mark (mf_cache_shift_decl);
   mf_mark (mf_cache_mask_decl);
@@ -788,7 +788,7 @@ mf_xform_derefs_1 (block_stmt_iterator *
                 /* Don't instrument this access if the underlying
                    variable is not "eligible".  This test matches
                    those arrays that have only known-valid indexes,
-                   and thus are not labeled TREE_ADDRESSABLE. */
+                   and thus are not labeled TREE_ADDRESSABLE.  */
                 if (! mf_decl_eligible_p (var))
                   return;
                 else


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]