diff options
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index 04402205574..9c3038389e8 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -199,6 +199,9 @@ struct GTY(()) bitmap_head { } ~bitmap_head () { bitmap_clear (this); } + /* Count the number of bits set in the bitmap. */ + unsigned long count_bits () const; + unsigned first_set_bit () const; unsigned last_set_bit () const; @@ -237,9 +240,6 @@ inline bool bitmap_empty_p (const_bitmap map) /* True if the bitmap has only a single bit set. */ extern bool bitmap_single_bit_set_p (const_bitmap); -/* Count the number of bits set in the bitmap. */ -extern unsigned long bitmap_count_bits (const_bitmap); - /* Boolean operations on bitmaps. The _into variants are two operand versions that modify the first source operand. The other variants are three operand versions that to not destroy the source bitmaps. |