bug-gawk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

gawk-5.1.1 bug report


From: David Binderman
Subject: gawk-5.1.1 bug report
Date: Tue, 5 Apr 2022 17:43:13 +0000

Hello there,

I just tried to compile gawk-5.1.1 with new clang-14. It said

 dfa.c:1093:27: warning: use of bitwise '&' with boolean operands 
[-Wbitwise-instead-of-logical]

Source code is

              || (isasciidigit (c) & isasciidigit (c2)))

Maybe better code is

              || (isasciidigit (c) && isasciidigit (c2)))

Regards

David Binderman



reply via email to

[Prev in Thread] Current Thread [Next in Thread]