On 5 April 2024 03:03:05 CEST, "H.J. Lu" <hjl.to...@gmail.com> wrote: >On Thu, Apr 4, 2024 at 5:34 PM <rep.dot....@gmail.com> wrote: >> >> On 3 April 2024 15:49:13 CEST, "H.J. Lu" <hjl.to...@gmail.com> wrote: >
>> + /* Skip if it has been visited. */ >> + unsigned int uid = e->caller->get_uid (); >> + if (bitmap_bit_p (ifunc_ref_map, uid)) >> + continue; >> + bitmap_set_bit (ifunc_ref_map, uid); >> >> I think you could have written this as >> if (!bitmap_set_bit (ifunc_ref_map, uid)) >> continue; >> > >Feel free to submit a patch. OK, could be that https://inbox.sourceware.org/gcc-patches/20211101220212.3d308d1f@nbbrfq/ was not applied yet, the bitmap_clear_bit is the same. I'll try to remember these for next stage 1. cheers