diff options
| author | grischka <grischka> | 2009-07-06 21:16:41 +0200 |
|---|---|---|
| committer | unknown <gr@.(none)> | 2009-07-18 21:55:10 +0200 |
| commit | bed17847bdfa872e219a12237e06df83e464bdba (patch) | |
| tree | 4c3518ff2dd50b0ed657254919e12593f2f41221 /libtcc.c | |
| parent | d0b432ab38b09cd167d8a8065ffe1e14878d6e2d (diff) | |
| download | tinycc-bed17847bdfa872e219a12237e06df83e464bdba.tar.gz tinycc-bed17847bdfa872e219a12237e06df83e464bdba.tar.bz2 | |
cleanup: stop abuse of sym->c for #define tokenstreams
Diffstat (limited to 'libtcc.c')
| -rw-r--r-- | libtcc.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1059,6 +1059,9 @@ static Sym *sym_push2(Sym **ps, int v, int t, long c) s = sym_malloc(); s->v = v; s->type.t = t; +#ifdef _WIN64 + s->d = NULL; +#endif s->c = c; s->next = NULL; /* add in stack */ |
