diff options
16 files changed, 42 insertions, 70 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 72659a0495c..e3cd6ef3f4e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,31 @@ +2003-04-23 Paolo Carlini <pcarlini@unitus.it> + + * testsuite/27_io/basic_filebuf/3.cc: _S_pback_size now + belongs to basic_filebuf. + * testsuite/27_io/basic_fstream/3.cc: Likewise. + * testsuite/27_io/basic_ifstream/3.cc: Likewise. + * testsuite/27_io/basic_ios/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_iostream/3.cc: Likewise. + * testsuite/27_io/basic_istream/3.cc: Likewise. + * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: + _S_pback_size now belongs to basic_filebuf. + * testsuite/27_io/basic_istringstream/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_ofstream/3.cc: _S_pback_size now + belongs to basic_filebuf. + * testsuite/27_io/basic_ostream/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: + _S_pback_size now belongs to basic_filebuf. + * testsuite/27_io/basic_ostringstream/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_streambuf/3.cc: _S_pback_size now belongs + to basic_filebuf. + * testsuite/27_io/basic_stringbuf/3.cc: Remove _S_pback_size + instantiation (now belongs to basic_filebuf). + * testsuite/27_io/basic_stringstream/3.cc: Likewise. + 2003-04-23 Benjamin Kosnik <bkoz@redhat.com> * configure.in: Move GLIBCPP_CHECK_PCH before native/cross conditions. diff --git a/libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc b/libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc index a67d5961897..ddec01c02e3 100644 --- a/libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_filebuf/3.cc @@ -130,8 +130,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_fstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_fstream/3.cc index a9eb1137a26..216e9a26216 100644 --- a/libstdc++-v3/testsuite/27_io/basic_fstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_fstream/3.cc @@ -134,8 +134,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc index c1d2544dc35..9de0c62a019 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ifstream/3.cc @@ -134,8 +134,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_ios/3.cc b/libstdc++-v3/testsuite/27_io/basic_ios/3.cc index fa9e8b1804e..fd3742bf8ab 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ios/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ios/3.cc @@ -129,13 +129,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_iostream/3.cc b/libstdc++-v3/testsuite/27_io/basic_iostream/3.cc index 9cad3051aeb..004a363063d 100644 --- a/libstdc++-v3/testsuite/27_io/basic_iostream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_iostream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_istream/3.cc b/libstdc++-v3/testsuite/27_io/basic_istream/3.cc index 1a7a04c703c..8bd7b8a7226 100644 --- a/libstdc++-v3/testsuite/27_io/basic_istream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_istream/3.cc @@ -129,13 +129,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc b/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc index 465e67aeb72..c70275745ce 100644 --- a/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc +++ b/libstdc++-v3/testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc @@ -182,8 +182,8 @@ template std::basic_string<unsigned char>::_Rep::_S_terminal; template - std::basic_streambuf<unsigned char>::int_type - std::basic_streambuf<unsigned char>::_S_pback_size; + std::basic_filebuf<unsigned char>::int_type + std::basic_filebuf<unsigned char>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc index 9b5354531ca..0b051e97200 100644 --- a/libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_istringstream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc index 0b2d7c979e3..5149ecd5580 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ofstream/3.cc @@ -134,8 +134,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_ostream/3.cc b/libstdc++-v3/testsuite/27_io/basic_ostream/3.cc index 0c71061c3c7..09eb94c8b1b 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ostream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ostream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc b/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc index e675c8db029..a38bddc162b 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc @@ -153,8 +153,8 @@ template std::basic_string<unsigned char>::_Rep::_S_terminal; template - std::basic_streambuf<unsigned char>::int_type - std::basic_streambuf<unsigned char>::_S_pback_size; + std::basic_filebuf<unsigned char>::int_type + std::basic_filebuf<unsigned char>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc index 777b70226a7..f7e96885ea3 100644 --- a/libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_ostringstream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc b/libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc index ffc765f77f9..36e5290540d 100644 --- a/libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_streambuf/3.cc @@ -132,8 +132,8 @@ void test07() #if !__GXX_WEAK__ // Explicitly instantiate for systems with no COMDAT or weak support. template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; + std::basic_filebuf<gnu_char_type>::int_type + std::basic_filebuf<gnu_char_type>::_S_pback_size; #endif int main() diff --git a/libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc b/libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc index 93358ccfe58..14275c2e64a 100644 --- a/libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_stringbuf/3.cc @@ -127,13 +127,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); diff --git a/libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc b/libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc index d877dbb7baf..036d7e59bdb 100644 --- a/libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc +++ b/libstdc++-v3/testsuite/27_io/basic_stringstream/3.cc @@ -131,13 +131,6 @@ void test07() } } -#if !__GXX_WEAK__ -// Explicitly instantiate for systems with no COMDAT or weak support. -template - std::basic_streambuf<gnu_char_type>::int_type - std::basic_streambuf<gnu_char_type>::_S_pback_size; -#endif - int main() { test07(); |