diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-04-08 03:20:30 +0200 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-04-08 03:20:30 +0200 |
commit | a7333393fd53de484b6ffe4838d63b86888739c0 (patch) | |
tree | fd0ea8975e3dedfe1d799bbc7f2d0b9d0b5d7f3c | |
parent | build: add an all-installable target that builds the targets to install. (diff) | |
download | sparse-v0.4.3-gentoo.tar.gz sparse-v0.4.3-gentoo.tar.bz2 sparse-v0.4.3-gentoo.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.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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; |