decrease padding: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nilly
text data bss dec hex filename 1021236 559 5052 1026847 fab1f busybox_old 1021120 559 5052 1026731 faaab busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@ -517,7 +517,7 @@ struct BcLexKeyword {
|
||||
};
|
||||
#define LEX_KW_ENTRY(a, b) \
|
||||
{ .name8 = a /*, .posix = b */ }
|
||||
static const struct BcLexKeyword bc_lex_kws[20] = {
|
||||
static const struct BcLexKeyword bc_lex_kws[20] ALIGN8 = {
|
||||
LEX_KW_ENTRY("auto" , 1), // 0
|
||||
LEX_KW_ENTRY("break" , 1), // 1
|
||||
LEX_KW_ENTRY("continue", 0), // 2 note: this one has no terminating NUL
|
||||
|
Reference in New Issue
Block a user