diff options
author | Kenneth Zadeck <zadeck@naturalbridge.com> | 2008-04-21 20:15:38 +0000 |
---|---|---|
committer | Kenneth Zadeck <zadeck@gcc.gnu.org> | 2008-04-21 20:15:38 +0000 |
commit | b60db1bae78b40ecca246f787e5661d1de779f3a (patch) | |
tree | 60a502b3646568411cd11bb0bfb90478e6ddf309 /gcc/sbitmap.h | |
parent | 6d9d0028e5fd4e6a21df223aa500bda28a90a81a (diff) | |
download | gcc-b60db1bae78b40ecca246f787e5661d1de779f3a.tar.gz |
sbitmap.c (sbitmap_range_empty_p): New function.
2008-04-24 Kenneth Zadeck <zadeck@naturalbridge.com>
* sbitmap.c (sbitmap_range_empty_p): New function.
* sbitmap.h (sbitmap_range_empty_p): New function.
* bitmap.h: Now includes obstack.h.
From-SVN: r134529
Diffstat (limited to 'gcc/sbitmap.h')
-rw-r--r-- | gcc/sbitmap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h index 3736341e251..7e2bc707677 100644 --- a/gcc/sbitmap.h +++ b/gcc/sbitmap.h @@ -1,5 +1,5 @@ /* Simple bitmaps. - Copyright (C) 1999, 2000, 2002, 2003, 2004, 2006, 2007 + Copyright (C) 1999, 2000, 2002, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc. This file is part of GCC. @@ -219,6 +219,7 @@ extern void sbitmap_copy (sbitmap, const_sbitmap); extern void sbitmap_copy_n (sbitmap, const_sbitmap, unsigned int); extern int sbitmap_equal (const_sbitmap, const_sbitmap); extern bool sbitmap_empty_p (const_sbitmap); +extern bool sbitmap_range_empty_p (const_sbitmap, unsigned int, unsigned int); extern void sbitmap_zero (sbitmap); extern void sbitmap_ones (sbitmap); extern void sbitmap_vector_zero (sbitmap *, unsigned int); |