From 1445fea5827a948996e1c7bea24df4c0df79f432 Mon Sep 17 00:00:00 2001 From: grischka Date: Sat, 19 Dec 2009 19:14:01 +0100 Subject: tccpe: allow linkage to extern symbols from asm --- libtcc.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libtcc.c') diff --git a/libtcc.c b/libtcc.c index 9a04a9e..40b845e 100644 --- a/libtcc.c +++ b/libtcc.c @@ -1074,6 +1074,7 @@ static Sym *sym_push2(Sym **ps, int v, int t, long c) s = sym_malloc(); s->v = v; s->type.t = t; + s->type.ref = NULL; #ifdef _WIN64 s->d = NULL; #endif -- cgit v1.3.1