diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-05-26 15:01:11 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-05-26 15:01:11 +0000 |
commit | ca7fd9cd384910ac69933dbc5f14f2d51d3e882e (patch) | |
tree | 29efe3b87d6765a6332a2a1b7d4548c91d80fe0c /gcc/bitmap.c | |
parent | 7aacf9892018dafdc9da54ae14c0c357626f76ac (diff) | |
download | gcc-ca7fd9cd384910ac69933dbc5f14f2d51d3e882e.tar.gz |
alias.c: Fix formatting.
* alias.c: Fix formatting.
* attribs.c: Likewise.
* bb-reorder.c: Likewise.
* bitmap.c: Likewise.
* bitmap.h: Likewise.
* builtins.c: Likewise.
From-SVN: r53898
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r-- | gcc/bitmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c index 786689b4ad5..189c06edc70 100644 --- a/gcc/bitmap.c +++ b/gcc/bitmap.c @@ -236,7 +236,7 @@ bitmap_clear (head) bitmap_free = element; } - head->first = head->current = 0; + head->first = head->current = 0; } /* Copy a bitmap to another bitmap. */ @@ -397,7 +397,7 @@ bitmap_bit_p (head, bit) /* Return the bit number of the first set bit in the bitmap, or -1 if the bitmap is empty. */ -int +int bitmap_first_set_bit (a) bitmap a; { @@ -450,7 +450,7 @@ bitmap_first_set_bit (a) /* Return the bit number of the last set bit in the bitmap, or -1 if the bitmap is empty. */ -int +int bitmap_last_set_bit (a) bitmap a; { |