Module Name: src Committed By: rillig Date: Sun Mar 7 18:02:45 UTC 2021
Modified Files: src/usr.bin/xlint/lint1: cgram.y lint1.h Log Message: lint: fix off-by-one error in 'case 3...5' According to the GCC documentation[1], the high end of the range is inclusive as well, which makes sense since otherwise there would be no way of specifying a range that includes the maximum representable number. Since the range is not used at all in the code, none of the tests could possibly fail. [1] https://gcc.gnu.org/onlinedocs/gcc/Case-Ranges.html No functional change. To generate a diff of this commit: cvs rdiff -u -r1.164 -r1.165 src/usr.bin/xlint/lint1/cgram.y cvs rdiff -u -r1.69 -r1.70 src/usr.bin/xlint/lint1/lint1.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.