# HG changeset patch # User Joerg Sonnenberger # Date 1424992981 -3600 # Node ID 19278e2f885d07b3b9ab1d54a7b1a201f63cdb23 # Parent 95fbb216e23f073c4148007501014646f27709ec Roughly sort by size to reduce padding. diff -r 95fbb216e23f -r 19278e2f885d macro.c --- a/macro.c Fri Feb 27 00:21:31 2015 +0100 +++ b/macro.c Fri Feb 27 00:23:01 2015 +0100 @@ -50,11 +50,11 @@ struct macro { struct place defplace; struct place expansionplace; - unsigned hash; - char *name; - bool hasparams; struct stringarray params; struct expansionitemarray expansion; + char *name; + unsigned hash; + bool hasparams; bool inuse; }; DECLARRAY(macro, static UNUSED);