diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-13 20:48:45 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-13 20:48:45 +0000 |
commit | 621a25ae4462c07cf701b25bac9da17961092765 (patch) | |
tree | 4c9cf84aa5561d6c6759debacb43b9ee62741ed2 /gcc/bitmap.c | |
parent | 3d3965630e5f9c56ef359b418f4ab9c0744eaa24 (diff) | |
download | gcc-621a25ae4462c07cf701b25bac9da17961092765.tar.gz |
* bitmap.c, bitmap.h, expmed.c, tree-cfg.c: Fix comment
formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90595 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index a067984457e..6ab194f1548 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -496,7 +496,7 @@ bitmap_first_set_bit (bitmap a) } -/* DST = A & B. */ +/* DST = A & B. */ void bitmap_and (bitmap dst, bitmap a, bitmap b) @@ -606,7 +606,7 @@ bitmap_and_compl (bitmap dst, bitmap a, bitmap b) { if (!b_elt || a_elt->indx < b_elt->indx) { - /* Copy a_elt. */ + /* Copy a_elt. */ if (!dst_elt) dst_elt = bitmap_elt_insert_after (dst, dst_prev); |