Module Name: src Committed By: rillig Date: Tue Dec 7 21:47:21 UTC 2021
Modified Files: src/usr.bin/make: var.c Log Message: make: merge branches for modifiers ':D' and ':U' These branches have the exact same code, without involving any macros, nevertheless GCC 10 doesn't merge them. Further, GCC thinks that the function ApplyModifier_Defined were called from two different places, thus creating an actual function definition. Merging the case labels inlines the function, saving a few instructions and a few hundred bytes in the binary. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.967 -r1.968 src/usr.bin/make/var.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.