aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>2017-12-08 09:27:40 +0000
committerRainer Orth <ro@gcc.gnu.org>2017-12-08 09:27:40 +0000
commit1db9ce24bb1844c4ff341e01f17316c55ab31d66 (patch)
treecea8e01c5032796137696668c36d9f09c7a0a091 /gcc
parentbecb7a366039fe2738d56017cfe9eac74a5512fd (diff)
downloadgcc-1db9ce24bb1844c4ff341e01f17316c55ab31d66.zip
gcc-1db9ce24bb1844c4ff341e01f17316c55ab31d66.tar.gz
gcc-1db9ce24bb1844c4ff341e01f17316c55ab31d66.tar.bz2
Initialize new member of SOLARIS_ATTRIBUTE_TABLE
* config/sol2.h (SOLARIS_ATTRIBUTE_TABLE): Initialize new member of struct attribute_spec. From-SVN: r255500
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/sol2.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 95aea7a..4112576 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2017-12-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
+ * config/sol2.h (SOLARIS_ATTRIBUTE_TABLE): Initialize new member
+ of struct attribute_spec.
+
2017-12-08 Julia Koval <julia.koval@intel.com>
* config/i386/avx512vnniintrin.h (_mm512_dpwssds_epi32,
diff --git a/gcc/config/sol2.h b/gcc/config/sol2.h
index 8174ceb..69c713b 100644
--- a/gcc/config/sol2.h
+++ b/gcc/config/sol2.h
@@ -406,8 +406,8 @@ along with GCC; see the file COPYING3. If not see
/* #pragma init and #pragma fini are implemented on top of init and
fini attributes. */
#define SOLARIS_ATTRIBUTE_TABLE \
- { "init", 0, 0, true, false, false, NULL, false }, \
- { "fini", 0, 0, true, false, false, NULL, false }
+ { "init", 0, 0, true, false, false, NULL, false, NULL }, \
+ { "fini", 0, 0, true, false, false, NULL, false, NULL }
/* Solaris-specific #pragmas are implemented on top of attributes. Hook in
the bits from config/sol2.c. */