Module Name: src Committed By: rillig Date: Mon Sep 28 22:38:32 UTC 2020
Modified Files: src/usr.bin/make: make.c make.h Log Message: make(1): remove the inline attribute from debug_printf The code size overhead of a varargs function is much more than I had expected. Since GCC 5 didn't inline the function anyway and it is only used in debug mode, there is no point keeping multiple copies of that code around. To generate a diff of this commit: cvs rdiff -u -r1.153 -r1.154 src/usr.bin/make/make.c cvs rdiff -u -r1.150 -r1.151 src/usr.bin/make/make.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.