preproc: Reorder SMacro members to eliminate padding

Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
This commit is contained in:
Cyrill Gorcunov 2011-07-17 20:06:20 +04:00
parent d47e00db4c
commit 10083ae953

View File

@ -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;
};
/*