Re: [PATCH 1/2] x86/bootflag: Change some static functions to bool

From: Uros Bizjak
Date: Mon Feb 24 2025 - 02:58:40 EST


On Mon, Feb 24, 2025 at 8:48 AM Jiri Slaby <jirislaby@xxxxxxxxxx> wrote:
>
> On 24. 02. 25, 8:39, Uros Bizjak wrote:
> > The internal compiler representation of the following testcase:
> >
> > _Bool foo (int x) { return x; }
> >
> > is:
> >
> > --cut here--
> > _Bool foo (int x)
> > {
> > _Bool _2;
> >
> > <bb 2> [local count: 1073741824]:
> > _2 = x_1(D) != 0;
> > return _2;
>
> Yes, exactly as dictated by the C99 standard.
>
> > }
> > --cut here--
> >
> > For me, !!x in the source means that the change of types was
> > intentional. Surely, the compiler can do it by itself, so at the end
> > of the day, it is just a matter of personal taste.
>
> I've just learnt, that we even have that in CodingStyle:

Ugh, I didn't know that either... Thanks for the info.

Regarding the issue itself, I can create a follow-up patch that
removes !!x, or perhaps we can go all the way and substitute the
function with parity8() generic function, available in bitops.h.

Thanks,
Uros.