On 4/5/22 22:18, arn...@skeeve.com wrote:
dfa.c:1093:27: warning: use of bitwise '&' with boolean operands
[-Wbitwise-instead-of-logical]
It's valid in C to use bitwise '&' on bool, and doing so here eliminates
a conditional branch at the machine level, which can be a win.
How about if yo
Hi.
Thanks for the report. I am cc'ing the GNULIB guys, as they
are the upstream for dfa.c. In the meantime, I will make this
change in gawk.
Thanks!
Arnold
David Binderman wrote:
> Hello there,
>
> I just tried to compile gawk-5.1.1 with new clang-14. It said
>
> dfa.c:1093:27: warning: u