+2003-04-11 Benjamin Kosnik <bkoz@redhat.com>
+
+ * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Add
+ instantiation for AIX.
+ * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
+ * testsuite/25_algorithms/min_max.cc: Same.
+
2003-04-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* basic_file_stdio.cc (__basic_file<char>::close): Don't flush stream
template<typename T>
const T A<T>::a = T(3);
+#if !__GXX_WEAK__
+// Explicitly instantiate for systems with no COMDAT or weak support.
+template int A<int>::a;
+template int A<unsigned int>::a;
+template int A<short>::a;
+template int A<unsigned short>::a;
+template int A<long>::a;
+template int A<unsigned long>::a;
+template int A<long long>::a;
+template int A<unsigned long long>::a;
+template int A<char>::a;
+template int A<signed char>::a;
+template int A<unsigned char>::a;
+template int A<wchar_t>::a;
+template int A<float>::a;
+template int A<double>::a;
+template int A<long double>::a;
+#endif
+
void test02()
{
bool test = true;