1.cc: Add instantiations for systems with no COMDAT or weak support.
2004-07-04 Paolo Carlini <pcarlini@suse.de> * testsuite/25_algorithms/copy/1.cc: Add instantiations for systems with no COMDAT or weak support. * testsuite/25_algorithms/copy/2.cc: Likewise. * testsuite/25_algorithms/copy/3.cc: Likewise. * testsuite/25_algorithms/copy/4.cc: Likewise. From-SVN: r84076
This commit is contained in:
parent
1657a8095b
commit
f1ee6eca25
@ -1,3 +1,11 @@
|
||||
2004-07-04 Paolo Carlini <pcarlini@suse.de>
|
||||
|
||||
* testsuite/25_algorithms/copy/1.cc: Add instantiations for
|
||||
systems with no COMDAT or weak support.
|
||||
* testsuite/25_algorithms/copy/2.cc: Likewise.
|
||||
* testsuite/25_algorithms/copy/3.cc: Likewise.
|
||||
* testsuite/25_algorithms/copy/4.cc: Likewise.
|
||||
|
||||
2004-07-03 Paul Brook <paul@codesourcery.com>
|
||||
|
||||
* configure.ac: Set ABI_TWEAKS_SRCDIR.
|
||||
|
@ -56,6 +56,11 @@ test01()
|
||||
VERIFY( equal(s2, s2 + N, A) );
|
||||
}
|
||||
|
||||
#if !__GXX_WEAK__ && _MT_ALLOCATOR_H
|
||||
// Explicitly instantiate for systems with no COMDAT or weak support.
|
||||
template class __gnu_cxx::__mt_alloc<int>;
|
||||
#endif
|
||||
|
||||
int
|
||||
main()
|
||||
{
|
||||
|
@ -57,6 +57,11 @@ test01()
|
||||
VERIFY( equal(s2, s2 + N, a.begin()) );
|
||||
}
|
||||
|
||||
#if !__GXX_WEAK__ && _MT_ALLOCATOR_H
|
||||
// Explicitly instantiate for systems with no COMDAT or weak support.
|
||||
template class __gnu_cxx::__mt_alloc<int>;
|
||||
#endif
|
||||
|
||||
int
|
||||
main()
|
||||
{
|
||||
|
@ -58,6 +58,12 @@ test01()
|
||||
VERIFY( equal(s2, s2 + N, a.begin()) );
|
||||
}
|
||||
|
||||
#if !__GXX_WEAK__ && _MT_ALLOCATOR_H
|
||||
// Explicitly instantiate for systems with no COMDAT or weak support.
|
||||
template class __gnu_cxx::__mt_alloc<int*>;
|
||||
template class __gnu_cxx::__mt_alloc<int>;
|
||||
#endif
|
||||
|
||||
int
|
||||
main()
|
||||
{
|
||||
|
@ -58,6 +58,12 @@ test01()
|
||||
VERIFY( equal(s2, s2 + N, a.begin()) );
|
||||
}
|
||||
|
||||
#if !__GXX_WEAK__ && _MT_ALLOCATOR_H
|
||||
// Explicitly instantiate for systems with no COMDAT or weak support.
|
||||
template class __gnu_cxx::__mt_alloc<std::_List_node<int> >;
|
||||
template class __gnu_cxx::__mt_alloc<int>;
|
||||
#endif
|
||||
|
||||
int
|
||||
main()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user