diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-07-17 20:06:20 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-07-17 20:06:20 +0400 |
commit | 10083ae95398bd28acf5b3c76c954c8563b41830 (patch) | |
tree | 941599f81b7aa13decbb2efa69cb08972af95403 /preproc.c | |
parent | d47e00db4c384401190a1c2fe26e2ce7a3fe06df (diff) | |
download | nasm-10083ae95398bd28acf5b3c76c954c8563b41830.tar.gz nasm-10083ae95398bd28acf5b3c76c954c8563b41830.tar.bz2 nasm-10083ae95398bd28acf5b3c76c954c8563b41830.zip |
preproc: Reorder SMacro members to eliminate padding
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'preproc.c')
-rw-r--r-- | preproc.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -105,12 +105,12 @@ typedef struct IncPath IncPath; * Store the definition of a single-line macro. */ struct SMacro { - SMacro *next; - char *name; - bool casesense; - bool in_progress; - unsigned int nparam; - Token *expansion; + SMacro *next; + char *name; + Token *expansion; + unsigned int nparam; + bool casesense; + bool in_progress; }; /* |