diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-03 03:19:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-03 03:19:12 +0000 |
commit | 4828a73e551633c14e6ae9e0b2fe56c6bbddc0a7 (patch) | |
tree | ae8fa890d609128291d6fea611d508890e65babd /gcc/bitmap.h | |
parent | 5cc781508e02593002ea1198645539c3fc2f87bd (diff) | |
download | gcc-4828a73e551633c14e6ae9e0b2fe56c6bbddc0a7.zip gcc-4828a73e551633c14e6ae9e0b2fe56c6bbddc0a7.tar.gz gcc-4828a73e551633c14e6ae9e0b2fe56c6bbddc0a7.tar.bz2 |
* bitmap.h, dbxout.c, tree-mudflap.c: Fix comment formatting.
From-SVN: r90019
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |