diff options
author | Torvald Riegel <triegel@redhat.com> | 2014-12-15 22:05:06 +0100 |
---|---|---|
committer | Torvald Riegel <triegel@redhat.com> | 2014-12-16 10:26:48 +0100 |
commit | 1469f466967a48d11411aaaef7621db39caaee59 (patch) | |
tree | 0ebfec4769460ccbb69b5c55aaeb509370451994 | |
parent | 11e3417af6e354f1942c68a271ae51e892b2814d (diff) | |
download | glibc-1469f466967a48d11411aaaef7621db39caaee59.zip glibc-1469f466967a48d11411aaaef7621db39caaee59.tar.gz glibc-1469f466967a48d11411aaaef7621db39caaee59.tar.bz2 |
Fix warning in elf/tst-unique4lib.cc.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | elf/tst-unique4lib.cc | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2014-12-16 Torvald Riegel <triegel@redhat.com> + + * elf/tst-unique4lib.cc(a): Mark as used. + 2014-12-16 Florian Weimer <fweimer@redhat.com> [BZ #17630] diff --git a/elf/tst-unique4lib.cc b/elf/tst-unique4lib.cc index 20a10e9..17a7cdf 100644 --- a/elf/tst-unique4lib.cc +++ b/elf/tst-unique4lib.cc @@ -6,7 +6,7 @@ int S<N>::i = N; template<int N> const int S<N>::j __attribute__ ((used)) = -1; -static int a[24] = +static int a[24] __attribute__ ((used)) = { S<1>::i, S<2>::i, S<3>::i, S<4>::i, S<5>::i, S<6>::i, S<7>::i, S<8>::i, S<9>::i, S<10>::i, S<11>::i, S<12>::i, S<13>::i, S<14>::i, S<15>::i, |