[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
- gawk-5.1.1 bug report,
David Binderman <=
- Re: gawk-5.1.1 bug report, arnold, 2022/04/06
- Re: gawk-5.1.1 bug report, Paul Eggert, 2022/04/06
- Re: gawk-5.1.1 bug report, arnold, 2022/04/06
- Re: gawk-5.1.1 bug report, Paul Eggert, 2022/04/06
- Re: gawk-5.1.1 bug report, arnold, 2022/04/06
- Re: gawk-5.1.1 bug report, Bernhard Voelker, 2022/04/06
- Re: gawk-5.1.1 bug report, Paul Eggert, 2022/04/06
- Re: gawk-5.1.1 bug report, Paul Eggert, 2022/04/06
- Re: gawk-5.1.1 bug report, arnold, 2022/04/06
- Re: gawk-5.1.1 bug report, Ed Morton, 2022/04/06