diff options
author | Jakub Jelinek <jakub@redhat.com> | 2017-12-31 14:28:00 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2017-12-31 14:28:00 +0100 |
commit | 7048a15c80d0b5e6a152a92db0666021498c0147 (patch) | |
tree | 8dbaadb65003a4b621203cca0c7ce70ebff66f7a /gcc/config/i386 | |
parent | c787d24121b362d35250d38c369a4f0b6336537c (diff) | |
download | gcc-7048a15c80d0b5e6a152a92db0666021498c0147.zip gcc-7048a15c80d0b5e6a152a92db0666021498c0147.tar.gz gcc-7048a15c80d0b5e6a152a92db0666021498c0147.tar.bz2 |
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
Diffstat (limited to 'gcc/config/i386')
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 }, |