summaryrefslogtreecommitdiff
path: root/elf/tst-unique4.cc
diff options
context:
space:
mode:
authorPiotr Bury <pbury@goahead.com>2011-05-12 21:59:09 -0400
committerUlrich Drepper <drepper@gmail.com>2011-05-12 21:59:09 -0400
commit320a5dc07b907b1e640fd11ce49a04aa2b367711 (patch)
tree2013cd7929bfc4fc4115233318c216cea60b5b79 /elf/tst-unique4.cc
parentf574184a0e4b6ed69a5d9a3234543fba6d2a7367 (diff)
Fix resizing able for unique symbols when adding symbol for copy relocation
Diffstat (limited to 'elf/tst-unique4.cc')
-rw-r--r--elf/tst-unique4.cc27
1 files changed, 27 insertions, 0 deletions
diff --git a/elf/tst-unique4.cc b/elf/tst-unique4.cc
new file mode 100644
index 0000000000..9eaa909986
--- /dev/null
+++ b/elf/tst-unique4.cc
@@ -0,0 +1,27 @@
+// BZ 12511
+#include "tst-unique4.h"
+#include <cstdio>
+
+static int a[24] =
+ {
+ 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,
+ S<16>::i, S<17>::i, S<18>::i, S<19>::i, S<20>::i, S<21>::i, S<22>::i,
+ S<23>::i, S<24>::i
+ };
+
+int
+main (void)
+{
+ int result = 0;
+ for (int i = 0; i < 24; ++i)
+ {
+ printf("%d ", a[i]);
+ result |= a[i] != i + 1;
+ }
+
+ printf("\n%d\n", S<1>::j);
+ result |= S<1>::j != -1;
+
+ return result;
+}