diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-29 13:14:06 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-03-29 13:14:06 +0000 |
commit | ffa800d1190f125f6061a87cc19ae40e466511d2 (patch) | |
tree | 072f44d469a43191757dd46dd5ac39024fd01fdc /gcc/bitmap.h | |
parent | 1cf4a36a293cd9d9df40e2054c9474cf28a419ea (diff) | |
download | gcc-ffa800d1190f125f6061a87cc19ae40e466511d2.tar.gz |
* bitmap.c (bitmap_last_set_bit): New function.
* bitmap.h (bitmap_last_set_bit): Declare.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145229 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index a5b0528c3b6..99cf752f686 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -183,6 +183,7 @@ extern void bitmap_obstack_free (bitmap); #define dump_bitmap(file, bitmap) bitmap_print (file, bitmap, "", "\n") #define bitmap_zero(a) bitmap_clear (a) extern unsigned bitmap_first_set_bit (const_bitmap); +extern unsigned bitmap_last_set_bit (const_bitmap); /* Compute bitmap hash (for purposes of hashing etc.) */ extern hashval_t bitmap_hash(const_bitmap); |