From b356f1cbd42710736775c85a27ddecaf1ef5e867 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 13 May 2007 07:06:59 +0000 Subject: [PATCH] remove some debug --- tools/qfcc/source/qc-parse.y | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index c7535b5ff..ca9bbb910 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -580,20 +580,16 @@ var_initializer if (current_scope->type == sc_params) { local = 0; $$ = create_def (type, name, current_scope, st_static); - printf ("params\n"); } else { local = current_scope->type == sc_local; $$ = create_def (type, name, current_scope, current_storage); - printf ("%s\n", local ? "local" : "static/global"); } if (local) { expr_t *expr = assign_expr (new_def_expr ($$), $2); expr = fold_constants (expr); append_expr (local_expr, expr); def_initialized ($$); - printf (" local\n"); } else { - printf (" non-local\n"); $2 = constant_expr ($2); if ($2->type >= ex_string) { if ($$->constant) {