From: Jakub Jelinek Date: Sun, 31 Dec 2017 13:28:00 +0000 (+0100) Subject: re PR target/83536 (One 'false' too much in r255699 for mingw target (in config/i386... X-Git-Tag: upstream/12.2.0~34579 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7048a15c80d0b5e6a152a92db0666021498c0147;p=platform%2Fupstream%2Fgcc.git re PR target/83536 (One 'false' too much in r255699 for mingw target (in config/i386/i386.c)) PR target/83536 * config/i386/i386.c (ix86_attribute_table): Remove excess initializer for "shared" attribute. From-SVN: r256049 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3ea3f5b..c2913d2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-12-31 Jakub Jelinek + + PR target/83536 + * config/i386/i386.c (ix86_attribute_table): Remove excess + initializer for "shared" attribute. + 2017-12-30 Tom de Vries PR libgomp/83046 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 5c77066..9ff9ca4 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -44747,7 +44747,7 @@ static const struct attribute_spec ix86_attribute_table[] = { "dllexport", 0, 0, false, false, false, false, handle_dll_attribute, NULL }, { "shared", 0, 0, true, false, false, false, - ix86_handle_shared_attribute, false, NULL }, + ix86_handle_shared_attribute, NULL }, #endif { "ms_struct", 0, 0, false, false, false, false, ix86_handle_struct_attribute, NULL },