bootstrappable: uint16_t in struct on heap.

This commit is contained in:
Jan Nieuwenhuizen 2017-08-06 12:58:56 +02:00
parent ad531e6cf9
commit f4d018677a
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 5 additions and 0 deletions

View File

@ -1445,8 +1445,13 @@ static int tcc_set_linker(TCCState *s, const char *option)
typedef struct TCCOption {
const char *name;
#if !BOOTSTRAP
uint16_t index;
uint16_t flags;
#else
int index;
int flags;
#endif
} TCCOption;
enum {