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 /elf | |
parent | 11e3417af6e354f1942c68a271ae51e892b2814d (diff) | |
download | glibc-1469f466967a48d11411aaaef7621db39caaee59.tar.gz |
Fix warning in elf/tst-unique4lib.cc.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/tst-unique4lib.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/tst-unique4lib.cc b/elf/tst-unique4lib.cc index 20a10e93d0..17a7cdf567 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, |