Module Name: src Committed By: rillig Date: Sun Apr 18 08:00:13 UTC 2021
Modified Files: src/usr.bin/xlint/lint1: init.c lex.c Log Message: lint: fix storage class of compound literal in initializer A compound literal that occurs at block_level 0 does not have storage class AUTO. Instead, its storage class is either EXTERN or STATIC. While removing the temporary objects from the symbol table had prevented the assertion, it did not properly fix the underlying problem, which was that since C99 the initializers can contain references to unnamed objects that are created on-the-fly. For C90 it was correct to always use AUTO as the storage class of a temporary symbol. To generate a diff of this commit: cvs rdiff -u -r1.195 -r1.196 src/usr.bin/xlint/lint1/init.c cvs rdiff -u -r1.27 -r1.28 src/usr.bin/xlint/lint1/lex.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.