diff options
Diffstat (limited to 'gcc/sbitmap.h')
-rw-r--r-- | gcc/sbitmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h index da6116c..c07d55a 100644 --- a/gcc/sbitmap.h +++ b/gcc/sbitmap.h @@ -96,7 +96,7 @@ struct simple_bitmap_def /* Return the number of bits in BITMAP. */ #define SBITMAP_SIZE(BITMAP) ((BITMAP)->n_bits) -/* Verify that access at INDEX in bitmap MAP is valid. */ +/* Verify that access at INDEX in bitmap MAP is valid. */ inline void bitmap_check_index (const_sbitmap map, int index) @@ -105,7 +105,7 @@ bitmap_check_index (const_sbitmap map, int index) gcc_checking_assert ((unsigned int)index < map->n_bits); } -/* Verify that bitmaps A and B have same size. */ +/* Verify that bitmaps A and B have same size. */ inline void bitmap_check_sizes (const_sbitmap a, const_sbitmap b) |