aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2009-03-29 15:14:06 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2009-03-29 13:14:06 +0000
commit12802c2b3dfcb02d1a44be26c595643674583b20 (patch)
tree072f44d469a43191757dd46dd5ac39024fd01fdc /gcc/bitmap.h
parent4ea80a418fb9c977a460b803842c3ba744813a11 (diff)
downloadgcc-12802c2b3dfcb02d1a44be26c595643674583b20.zip
gcc-12802c2b3dfcb02d1a44be26c595643674583b20.tar.gz
gcc-12802c2b3dfcb02d1a44be26c595643674583b20.tar.bz2
bitmap.c (bitmap_last_set_bit): New function.
* bitmap.c (bitmap_last_set_bit): New function. * bitmap.h (bitmap_last_set_bit): Declare. From-SVN: r145229
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r--gcc/bitmap.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index a5b0528..99cf752 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);