diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-03-10 12:51:33 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-03-10 12:51:33 -0500 |
commit | 028478fa40d85a73b19638dbe3f83b1acebf370c (patch) | |
tree | 03f5573c44e2cde7b809f44134526d202c8b29e2 /elf/tst-unique3lib2.cc | |
parent | 908ea63341bbbca534411a0581cd16ba36e08706 (diff) | |
download | glibc-028478fa40d85a73b19638dbe3f83b1acebf370c.zip glibc-028478fa40d85a73b19638dbe3f83b1acebf370c.tar.gz glibc-028478fa40d85a73b19638dbe3f83b1acebf370c.tar.bz2 |
Fix copy relocations handling of unique objects.
Diffstat (limited to 'elf/tst-unique3lib2.cc')
-rw-r--r-- | elf/tst-unique3lib2.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/elf/tst-unique3lib2.cc b/elf/tst-unique3lib2.cc new file mode 100644 index 0000000..17d817e --- /dev/null +++ b/elf/tst-unique3lib2.cc @@ -0,0 +1,12 @@ +#include <cstdio> +#include "tst-unique3.h" + +template<typename T> int S<T>::i; + +extern "C" +int +in_lib2 () +{ + std::printf ("in_lib2: %d\n", S<char>::i); + return S<char>::i != 3; +} |