aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-11-03 03:19:12 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-11-03 03:19:12 +0000
commit4828a73e551633c14e6ae9e0b2fe56c6bbddc0a7 (patch)
treeae8fa890d609128291d6fea611d508890e65babd
parent5cc781508e02593002ea1198645539c3fc2f87bd (diff)
downloadgcc-4828a73e551633c14e6ae9e0b2fe56c6bbddc0a7.zip
gcc-4828a73e551633c14e6ae9e0b2fe56c6bbddc0a7.tar.gz
gcc-4828a73e551633c14e6ae9e0b2fe56c6bbddc0a7.tar.bz2
* bitmap.h, dbxout.c, tree-mudflap.c: Fix comment formatting.
From-SVN: r90019
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/bitmap.h2
-rw-r--r--gcc/dbxout.c2
-rw-r--r--gcc/tree-mudflap.c4
4 files changed, 8 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d3d8d61..b2ca732 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2004-11-03 Kazu Hirata <kazu@cs.umass.edu>
+ * bitmap.h, dbxout.c, tree-mudflap.c: Fix comment formatting.
+
+2004-11-03 Kazu Hirata <kazu@cs.umass.edu>
+
* tree-cfg.c (find_taken_edge): Abort if we are given a
statement that is neither COND_EXPR nor SWITCH_EXPR.
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index f20773b..acabca8 100644
--- a/gcc/bitmap.h
+++ b/gcc/bitmap.h
@@ -111,7 +111,7 @@ extern int bitmap_operation (bitmap, bitmap, bitmap, enum bitmap_bits);
#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);
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 7ed47b6..e9ad8d3 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -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;
diff --git a/gcc/tree-mudflap.c b/gcc/tree-mudflap.c
index 3ff50b6..f59732f 100644
--- a/gcc/tree-mudflap.c
+++ b/gcc/tree-mudflap.c
@@ -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 *iter, tree *tp,
/* 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