diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-07-17 20:00:30 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2011-07-17 20:00:30 +0400 |
commit | d47e00db4c384401190a1c2fe26e2ce7a3fe06df (patch) | |
tree | 74fa194e25daa0122868e422944a9670c01260dc /nasm.h | |
parent | 7248f8c9e98ec6e781aa5f626624bf9b7f89fc3f (diff) | |
download | nasm-d47e00db4c384401190a1c2fe26e2ce7a3fe06df.tar.gz nasm-d47e00db4c384401190a1c2fe26e2ce7a3fe06df.tar.bz2 nasm-d47e00db4c384401190a1c2fe26e2ce7a3fe06df.zip |
nasm.h: Reorder tokenval members to drop padding
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'nasm.h')
-rw-r--r-- | nasm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -251,9 +251,9 @@ size_t string_transform(char *, size_t, char **, enum strfunc); * `t_type' field in the structure. */ struct tokenval { - enum token_type t_type; - char *t_charptr; - int64_t t_integer, t_inttwo; + char *t_charptr; + int64_t t_integer, t_inttwo; + enum token_type t_type; }; typedef int (*scanner) (void *private_data, struct tokenval * tv); |