Module Name: src Committed By: rillig Date: Sat Mar 20 20:39:35 UTC 2021
Modified Files: src/usr.bin/xlint/lint1: main1.c op.h oper.c ops.def tree.c Log Message: lint: remove redundant operator properties table It's enough to have modtab, which describes the properties of the various operators. There is no need to have a second table imods that holds the same content. Rather make modtab constant as well. The only possible functional change is that the names of the internal operators 'no-op', '++', '--', 'real', 'imag' and 'case' may appear in diagnostics, where previously lint invoked undefined behavior by passing a null pointer for a '%s' conversion specifier. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/usr.bin/xlint/lint1/main1.c cvs rdiff -u -r1.14 -r1.15 src/usr.bin/xlint/lint1/op.h cvs rdiff -u -r1.7 -r1.8 src/usr.bin/xlint/lint1/oper.c cvs rdiff -u -r1.18 -r1.19 src/usr.bin/xlint/lint1/ops.def cvs rdiff -u -r1.239 -r1.240 src/usr.bin/xlint/lint1/tree.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.