bitmap.c (bitmap_find_bit): Guard the bitmap descriptor query with GATHER_STATISTICS.
authorRichard Biener <rguenther@suse.de>
Fri, 4 Dec 2015 11:58:59 +0000 (11:58 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Fri, 4 Dec 2015 11:58:59 +0000 (11:58 +0000)
2015-12-04  Richard Biener  <rguenther@suse.de>

* bitmap.c (bitmap_find_bit): Guard the bitmap descriptor
query with GATHER_STATISTICS.

From-SVN: r231261

gcc/ChangeLog
gcc/bitmap.c

index cfc56586f2c800dd84924e35517cf4d910c4d0c3..0531854651830890aa878271e847c7b42c6367b3 100644 (file)
@@ -1,3 +1,8 @@
+2015-12-04  Richard Biener  <rguenther@suse.de>
+
+       * bitmap.c (bitmap_find_bit): Guard the bitmap descriptor
+       query with GATHER_STATISTICS.
+
 2015-12-04  Eric Botcazou  <ebotcazou@adacore.com>
 
        PR middle-end/65958
index f04b8f9012052d8c27369df6af858c1af898b464..f886a8c5b16b82262922856817d5bba26ff0d0ec 100644 (file)
@@ -487,9 +487,11 @@ bitmap_find_bit (bitmap head, unsigned int bit)
       && head->first->next == NULL)
     return NULL;
 
-   /* Usage can be NULL due to allocated bitmaps for which we do not
-      call initialize function.  */
-   bitmap_usage *usage = bitmap_mem_desc.get_descriptor_for_instance (head);
+  /* Usage can be NULL due to allocated bitmaps for which we do not
+     call initialize function.  */
+  bitmap_usage *usage = NULL;
+  if (GATHER_STATISTICS)
+    usage = bitmap_mem_desc.get_descriptor_for_instance (head);
 
   /* This bitmap has more than one element, and we're going to look
      through the elements list.  Count that as a search.  */