diff options
Diffstat (limited to 'gcc/sbitmap.h')
-rw-r--r-- | gcc/sbitmap.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h index 66f9e13..633d84f 100644 --- a/gcc/sbitmap.h +++ b/gcc/sbitmap.h @@ -51,7 +51,7 @@ along with GCC; see the file COPYING3. If not see * set_difference : bitmap_and_compl * set_disjuction : (not implemented) * set_compare : bitmap_equal_p - * bit_in_range_p : bitmap_bit_in_range_p + * any_bit_in_range_p : bitmap_any_bit_in_range_p Some operations on 3 sets that occur frequently in data flow problems are also implemented: @@ -287,7 +287,10 @@ extern bool bitmap_and (sbitmap, const_sbitmap, const_sbitmap); extern bool bitmap_ior (sbitmap, const_sbitmap, const_sbitmap); extern bool bitmap_xor (sbitmap, const_sbitmap, const_sbitmap); extern bool bitmap_subset_p (const_sbitmap, const_sbitmap); -extern bool bitmap_bit_in_range_p (const_sbitmap, unsigned int, unsigned int); +extern bool bitmap_any_bit_in_range_p (const_sbitmap, unsigned int, + unsigned int); +extern bool bitmap_all_bits_in_range_p (const_sbitmap, unsigned int, + unsigned int); extern int bitmap_first_set_bit (const_sbitmap); extern int bitmap_last_set_bit (const_sbitmap); |