aboutsummaryrefslogtreecommitdiff
path: root/libtcc.c
diff options
context:
space:
mode:
authorgrischka <grischka>2009-07-06 21:16:41 +0200
committerunknown <gr@.(none)>2009-07-18 21:55:10 +0200
commitbed17847bdfa872e219a12237e06df83e464bdba (patch)
tree4c3518ff2dd50b0ed657254919e12593f2f41221 /libtcc.c
parentd0b432ab38b09cd167d8a8065ffe1e14878d6e2d (diff)
downloadtinycc-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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libtcc.c b/libtcc.c
index 17925a4..43293e2 100644
--- a/libtcc.c
+++ b/libtcc.c
@@ -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 */