aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Earnshaw <rearnsha@arm.com>2002-05-21 14:46:01 +0000
committerRichard Earnshaw <rearnsha@gcc.gnu.org>2002-05-21 14:46:01 +0000
commit279be7c8be548f0f0905ce019632b9f09cf06853 (patch)
treebe6cf18db8bf4a817092717508a0f3e4d6aad649 /gcc
parent193a563a8b03fac81c1476ff09534267dce35d80 (diff)
downloadgcc-279be7c8be548f0f0905ce019632b9f09cf06853.zip
gcc-279be7c8be548f0f0905ce019632b9f09cf06853.tar.gz
gcc-279be7c8be548f0f0905ce019632b9f09cf06853.tar.bz2
bitmap.c (bitmap_find_bit): Return early if we have the correct element cached.
* bitmap.c (bitmap_find_bit): Return early if we have the correct element cached. From-SVN: r53686
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/bitmap.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6f4a442..c3d26dc 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-21 Richard Earnshaw <rearnsha@arm.com>
+
+ * bitmap.c (bitmap_find_bit): Return early if we have the correct
+ element cached.
+
Tue May 21 10:51:54 CEST 2002 Jan Hubicka <jh@suse.cz>
* profile.c (gen_edge_profiler): Set alias set before the memory is
diff --git a/gcc/bitmap.c b/gcc/bitmap.c
index b735d14..786689b 100644
--- a/gcc/bitmap.c
+++ b/gcc/bitmap.c
@@ -300,8 +300,9 @@ bitmap_find_bit (head, bit)
bitmap_element *element;
unsigned HOST_WIDE_INT indx = bit / BITMAP_ELEMENT_ALL_BITS;
- if (head->current == 0)
- return 0;
+ if (head->current == 0
+ || head->indx == indx)
+ return head->current;
if (head->indx > indx)
for (element = head->current;