From 6281f27646adc69c4b23aab23347261d39102a7a Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Thu, 9 Nov 2017 11:27:21 +0100 Subject: Remove non needed check in bmp_iter_set_init (PR tree-optimization/82669). 2017-11-09 Martin Liska PR tree-optimization/82669 * sbitmap.h (bmp_iter_set_init): Remove non needed check. From-SVN: r254567 --- gcc/sbitmap.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'gcc/sbitmap.h') diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h index a5ff068..3c58bf0 100644 --- a/gcc/sbitmap.h +++ b/gcc/sbitmap.h @@ -171,8 +171,6 @@ static inline void bmp_iter_set_init (sbitmap_iterator *i, const_sbitmap bmp, unsigned int min, unsigned *bit_no ATTRIBUTE_UNUSED) { - bitmap_check_index (bmp, min); - i->word_num = min / (unsigned int) SBITMAP_ELT_BITS; i->bit_num = min; i->size = bmp->size; -- cgit v1.1