Commit aa6d7407 by Jeff Law Committed by Jeff Law

* bitmap.c (bitmap_find_bit): Remove useless test.

From-SVN: r236546
parent e93044fc
2016-05-20 Jeff Law <law@redhat.com>
* bitmap.c (bitmap_find_bit): Remove useless test.
2016-05-20 Segher Boessenkool <segher@kernel.crashing.org>
* function.c (thread_prologue_and_epilogue_insns): Commit the
......
......@@ -556,7 +556,7 @@ bitmap_find_bit (bitmap head, unsigned int bit)
want, the one we want doesn't exist. */
head->current = element;
head->indx = element->indx;
if (element != 0 && element->indx != indx)
if (element->indx != indx)
element = 0;
return element;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment