From b9b9f03e821f07bc7787755927f2379cc4672c09 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 12 Jul 2002 16:01:40 +0000 Subject: [PATCH] keep short defs out too --- tools/qfcc/source/emit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/emit.c b/tools/qfcc/source/emit.c index 968af7985..f2f2feaa0 100644 --- a/tools/qfcc/source/emit.c +++ b/tools/qfcc/source/emit.c @@ -515,7 +515,7 @@ emit_sub_expr (expr_t *e, def_t *dest) d = ReuseConstant (e, 0); break; case ex_short: - d = new_def (&type_short, 0, current_scope); + d = new_def (&type_short, 0, 0); d->ofs = e->e.short_val; d->absolute = 1; d->users = 1;