mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-12-09 08:51:18 +08:00
preproc: Reorder SMacro members to eliminate padding
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
parent
d47e00db4c
commit
10083ae953
12
preproc.c
12
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;
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user