From a7333393fd53de484b6ffe4838d63b86888739c0 Mon Sep 17 00:00:00 2001 From: Diego Elio Pettenò Date: Fri, 8 Apr 2011 03:20:30 +0200 Subject: Fix build with GCC 4.6 series. The label_statement attribute in the anonymous structures' union was duplicated for label_arg and labeled_struct alises, which were identical. Since the former is never used, delete it and leave the other as the only copy. --- parse.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/parse.h b/parse.h index 6b21e23..b26bd03 100644 --- a/parse.h +++ b/parse.h @@ -35,10 +35,6 @@ struct statement { struct /* declaration */ { struct symbol_list *declaration; }; - struct /* label_arg */ { - struct symbol *label; - struct statement *label_statement; - }; struct { struct expression *expression; struct expression *context; -- cgit v1.2.3-65-gdbad