summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gmail.com>2011-04-08 03:20:30 +0200
committerDiego Elio Pettenò <flameeyes@gmail.com>2011-04-08 03:20:30 +0200
commita7333393fd53de484b6ffe4838d63b86888739c0 (patch)
treefd0ea8975e3dedfe1d799bbc7f2d0b9d0b5d7f3c
parentbuild: add an all-installable target that builds the targets to install. (diff)
downloadsparse-a7333393fd53de484b6ffe4838d63b86888739c0.tar.gz
sparse-a7333393fd53de484b6ffe4838d63b86888739c0.tar.bz2
sparse-a7333393fd53de484b6ffe4838d63b86888739c0.zip
Fix build with GCC 4.6 series.v0.4.3-gentoo
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.
-rw-r--r--parse.h4
1 files changed, 0 insertions, 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;