Re: [RFC PATCH] Change the type of predicates to bool.

2021-06-30 Thread Jeff Law via Gcc-patches
On 6/30/2021 4:50 AM, Richard Biener via Gcc-patches wrote: On Wed, Jun 30, 2021 at 10:47 AM Uros Bizjak via Gcc-patches wrote: This RFC patch changes the type of predicates to bool. However, some of the targets (e.g. x86) use indirect functions to call the predicates, so without the local c

Re: [RFC PATCH] Change the type of predicates to bool.

2021-06-30 Thread Richard Biener via Gcc-patches
On Wed, Jun 30, 2021 at 10:47 AM Uros Bizjak via Gcc-patches wrote: > > This RFC patch changes the type of predicates to bool. However, some > of the targets (e.g. x86) use indirect functions to call the > predicates, so without the local change, the build fails. Putting the > patch through CI bot

[RFC PATCH] Change the type of predicates to bool.

2021-06-30 Thread Uros Bizjak via Gcc-patches
This RFC patch changes the type of predicates to bool. However, some of the targets (e.g. x86) use indirect functions to call the predicates, so without the local change, the build fails. Putting the patch through CI bots should weed out the problems, but I have no infrastructure to do it myself.