From f663f587fe47ae66aaf298a1269e903a83efdee2 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 10 Mar 2011 20:16:35 +0900 Subject: [PATCH] Fix the missing local defs for builtin functions. --- tools/qfcc/source/function.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/qfcc/source/function.c b/tools/qfcc/source/function.c index 5d339a8cd..d1b6ac6ef 100644 --- a/tools/qfcc/source/function.c +++ b/tools/qfcc/source/function.c @@ -621,8 +621,7 @@ build_builtin_function (symbol_t *sym, expr_t *bi_val, int far) finish_function (sym->s.func); // for debug info - //build_scope (f, f->def, sym->params); - //flush_scope (f->scope, 1); + build_scope (sym, current_symtab); return sym->s.func; }