gpdis.c:632:56: warning: logical 'or' of collectively exhaustive tests is always true [-Wlogical-op]
Source code is
if ((file1 == PIC14_REG_PCLATH) && ((tmp >= 3) || (tmp <= 6))) {
Suggest new code
if ((file1 == PIC14_REG_PCLATH) && ((tmp >= 3) && (tmp <= 6))) {
Anonymous
Thank you for your report.
Molnár Károly
The repaired versions [r1289]:
gputils-src-20161129-1289.tar.bz2 (sourceforge.net)
gputils-src-20161129-1289.tar.gz (sourceforge.net)
gputils-20161129-1289-setup.exe (sourceforge.net)
Károly
Related
Commit: [r1289]