aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-11-03 03:19:12 +0000
committerKazu Hirata <kazu@cs.umass.edu>2004-11-03 03:19:12 +0000
commit4545cf39d9759f436508369e22c98909d5a20338 (patch)
treeae8fa890d609128291d6fea611d508890e65babd /gcc/bitmap.h
parenteeb6495380240ca1a87826ba956dd53083614134 (diff)
* bitmap.h, dbxout.c, tree-mudflap.c: Fix comment formatting.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@90019 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r--gcc/bitmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index f20773b6b51..acabca8ab25 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);