summaryrefslogtreecommitdiff
path: root/preproc.c
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2011-07-17 20:06:20 +0400
committerCyrill Gorcunov <gorcunov@gmail.com>2011-07-17 20:06:20 +0400
commit10083ae95398bd28acf5b3c76c954c8563b41830 (patch)
tree941599f81b7aa13decbb2efa69cb08972af95403 /preproc.c
parentd47e00db4c384401190a1c2fe26e2ce7a3fe06df (diff)
downloadnasm-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.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/preproc.c b/preproc.c
index 3353b28..9173d9a 100644
--- a/preproc.c
+++ b/preproc.c
@@ -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;
};
/*