From 689d1ad3ece314f9c07a2ea5a03de3bd106a1244 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 9 Jun 2019 16:45:01 +0900 Subject: [PATCH] Remove some debug prints --- tools/qfcc/source/qc-parse.y | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/qfcc/source/qc-parse.y b/tools/qfcc/source/qc-parse.y index 8e9c38af8..308512b6b 100644 --- a/tools/qfcc/source/qc-parse.y +++ b/tools/qfcc/source/qc-parse.y @@ -1238,12 +1238,10 @@ opt_init init_var_decl_list : init_var_decl { - printf ("a\n"); $$ = $1; } | init_var_decl_list ',' { $$ = $0; } init_var_decl { - printf ("b\n"); $4->next = $1; $$ = $4; } @@ -1252,7 +1250,6 @@ init_var_decl_list init_var_decl : var_decl opt_initializer { - printf ("c\n"); specifier_t spec = $0; $1->type = append_type ($1->type, spec.type); $1->type = find_type ($1->type);