OSDN Git Service

b79cdf2e00a971eb21d3a5d25ddeb32d662b24e9
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / ChangeLog
1 2003-05-07  Benjamin Kosnik  <bkoz@redhat.com>
2         
3         * testsuite/27_io/ios_base/cons: New.
4         * testsuite/27_io/ios_base/cons/assign_neg.cc: New.
5         * testsuite/27_io/ios_base/cons/copy_neg.cc: New.       
6
7 2003-05-07  Paolo Carlini  <pcarlini@unitus.it>
8
9         * include/std/std_fstream.h (_M_is_indeterminate): Remove.
10         * src/fstream.cc
11         (basic_filebuf<char/wchar_t>::_M_underflow): Simplify: either
12         there is no buffer or __testget == !__testinit.
13
14         * src/fstream.cc
15         (basic_filebuf<char/wchar_t>::_M_underflow): _M_set_determinate()
16         automatically sets, if appropriate, _M_out_cur == _M_in_cur.
17
18         * include/std/std_fstream.h (_M_destroy_pback): Don't set
19         unnecessarily _M_pback_cur_save and _M_pback_end_save.
20
21         * include/std/std_fstream.h (_M_set_determinate): Minor tweak.
22
23         * include/std/std_sstream.h (_M_sync): Minor tweak.
24
25         * include/bits/fstream.tcc (close): No need to call
26         _M_destroy_pback, setting _M_pback_init to false suffices
27         to clean up.
28
29 2003-05-06  Benjamin Kosnik  <bkoz@redhat.com>
30         
31         * include/bits/stl_algo.h: Enums as _S_.
32         * include/bits/stl_tree.h: Same.
33         * include/bits/stl_bvector.h: Same.
34         * include/bits/ios_base.h: Same.
35         * include/bits/stl_alloc.h: Same.
36         * include/ext/stl_hashtable.h: Same.
37         * src/ios.cc: And here.
38         
39         * include/std/std_sstream.h: Replace _M_really_sync to _M_sync. 
40         * include/bits/sstream.tcc: Same.
41
42         * include/bits/basic_ios.h: Correct spacing for '< ctype'.
43  
44         * include/bits/locale_facets.tcc: Replace __temp to __tmp.
45
46         * include/bits/locale_facets.h (__num_base): Remove protected.
47         Use _S_[io]* names for enumerations.
48         (_S_format_int): Remove.
49         * include/bits/locale_facets.tcc: Same.
50         * src/locale.cc: Same.
51         
52         * include/std/std_sstream.h (stringbuf::str): Tweak formatting.
53         
54 2003-05-06  Phil Edwards  <pme@gcc.gnu.org>
55
56         * docs/html/faq/index.html (3.10):  Add note about mips atomicity.h.
57         * docs/html/faq/index.txt:  Regenerated.
58
59 2003-05-06  Michael Ritzert <Ritzert@t-online.de>
60             Matt Kraai <kraai@alumni.cmu.edu>
61
62         * include/ext/stl_rope.h (_Rope_RopeRep<>::_M_c_string_lock): Tweak.
63         And retweak.
64
65 2003-05-06  Richard Sandiford  <rsandifo@redhat.com>
66
67         * configure.target (mips*): Use the generic atomicity.h by default.
68
69 2003-05-05  Loren J. Rittle  <ljrittle@acm.org>
70             (Inspired by an alternate patch from Danny Smith.)
71
72         * include/bits/stl_threads.h (_Atomic_swap): Kill it...
73         (_Swap_lock_struct<>): ...and the horse it rode in on.
74         * src/globals.cc (_Swap_lock_struct<>): Likewise.
75         * include/ext/stl_rope.h (_Rope_RopeRep<>::_M_c_string_lock): New
76         member to support...
77         * include/ext/ropeimpl.h (rope<>::c_str): Follow *all* memory
78         visibility rules related to POSIX threads.
79         * testsuite/thread/pthread7-rope.cc: New test.
80
81 2003-05-04  Paolo Carlini  <pcarlini@unitus.it>
82
83         * testsuite/21_strings/basic_string/find/char/3.cc: New
84         file, testing basic_string<char>::find_first_not_of.
85         * testsuite/21_strings/basic_string/find/wchar_t/3.cc:
86         Likewise for basic_string<wchar_t>.
87
88 2003-05-03  Loren J. Rittle  <ljrittle@acm.org>
89
90         * testsuite/thread/pthread1.cc: Remove special case for FreeBSD.
91
92 2003-05-02  Benjamin Kosnik  <bkoz@redhat.com>
93
94         * include/Makefile.am (CLEANFILES): Remove PCH files in target
95         directory.
96         * include/Makefile.in: Regenerate.
97
98 2003-05-02  Paolo Carlini  <pcarlini@unitus.it>
99
100         * include/std/std_sstream.h (str()): Tidy.
101
102 2003-05-02  Nathan Myers  <ncm@cantrip.org>
103             Paolo Carlini  <pcarlini@unitus.it>
104
105         * include/bits/streambuf.tcc (__copy_streambufs): Rewrote.
106
107 2003-05-02  Jonathan Wakely  <redi@gcc.gnu.org>
108
109         * include/bits/basic_string.h (swap): Remove redundant template
110         parameters from declaration of non-template member function.
111
112 2003-05-01  Phil Edwards  <pme@gcc.gnu.org>
113
114         * acconfig.h (_GLIBCPP_USE_NLS):  New symbol.
115         * configure.in:  Move libintl.h header test...
116         * acinclude.m4 (GLIBCPP_ENABLE_CLOCALE):  ...to here.  Gather all
117         the NLS-related test results into one symbol.
118         * src/functexcept.cc:  Use it here.
119         * aclocal.m4, config.h.in, configure:  Regenerated.
120
121 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
122
123         * include/bits/sstream.tcc (overflow): Instead of calling
124         str(), then _M_string.reserve, thus copying the contents
125         of the current buffer two times, just copy the latter in
126         a temporary, then use the 'swap trick'.
127
128 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
129
130         * include/std/std_sstream.h (str()): Revert the best of the
131         previous 'improvement', incorrect due to the COW nature of
132         v3 basic_string; simplify.
133
134 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
135
136         * include/bits/streambuf.tcc (__copy_streambufs): Adjust the
137         type of __avail to ptrdiff_t to avoid signed-unsigned warning.
138
139 2003-05-01  Benjamin Kosnik  <bkoz@redhat.com>
140
141         * testsuite/abi_check.cc (check_version): Update known versions.
142         Check added symbols for version_name != base version. Add missing
143         symbols to incompatible list.
144         
145 2003-05-01  Benjamin Kosnik  <bkoz@redhat.com>
146
147         * acinclude.m4 (GLIBCPP_EXPORT_FLAGS): Remove -Winline.
148         * aclocal.m4: Regenerated.
149         * configure: Regenerated.
150
151 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
152
153         * include/bits/streambuf.tcc (basic_streambuf::xsgetn):
154         Const-ify some variables.
155         (basic_streambuf::xsputn): Likewise; change the type of some
156         variables to size_t.
157         (__copy_streambufs): Change some variables to size_t.
158
159 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
160
161         * include/std/std_sstream.h (str()): Avoid constructing
162         a basic_string temporary not only when it would turn out
163         to be zero-sized but also when identical to the current
164         _M_string buffer.
165
166 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
167
168         * include/ext/stdio_filebuf.h
169         (stdio_filebuf(int, std::ios_base::openmode, bool, size_t),
170         stdio_filebuf(std::__c_file*, std::ios_base::openmode, size_t)):
171         Shorten a bit (-10 lines) by factoring out some code.
172
173 2003-04-30  Phil Edwards  <pme@gcc.gnu.org>
174
175         * acinclude.m4:  Add bit missing from previous patch.
176         * aclocal.m4, configure:  Regenerated.
177
178 2003-04-29  Phil Edwards  <pme@gcc.gnu.org>
179
180         * docs/doxygen/mainpage.html:  Bring up to date.
181         * docs/doxygen/run_doxygen:  Cosmetic tweaks.  Work around a bug
182         in Doxygen.
183         * docs/doxygen/user.cfg.in:  Scanning the precompiled headers
184         breaks everything.  Don't scan them.
185         * docs/html/documentation.html:  Point to "Write after approval"
186         notes.
187
188 2003-04-29  Phil Edwards  <pme@gcc.gnu.org>
189
190         * acinclude.m4 (GLIBCPP_ENABLE_CLOCALE):  Search for gettext outside
191         of libc if message translations are being used.  Fix info text in
192         xieee_1003.1-2001 case.
193         * aclocal.m4, configure:  Regenerate.
194
195 2003-04-29 Joel Sherrill  <joel.sherrill@OARcorp.com>
196            Loren J. Rittle <ljrittle@acm.org>
197            Martin v. Loewis  <martin@v.loewis.de>
198
199         * config/cpu/i386/atomicity.h: New file.
200
201 2003-04-29  Paolo Carlini  <pcarlini@unitus.it>
202
203         * include/bits/fstream.tcc (open): Change to single return.
204
205 2003-04-29  Paolo Carlini  <pcarlini@unitus.it>
206
207         * include/std/std_sstream.h (underflow): Change to single return.
208
209 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
210
211         * include/std/std_streambuf.h (_M_buf): is currently
212         used only for basic_filebuf, therefore move it there.
213         (basic_streambuf(), ~basic_streambuf()): Adjust.
214         * include/std/std_fstream.h (_M_buf): Moved here.
215         * include/std/std_sstream.h (setbuf): Don't set _M_buf,
216         is actually redundant for basic_stringbuf.
217         (_M_really_sync): Likewise.
218         * include/bits/fstream.tcc (basic_filebuf()): Adjust.
219         * include/bits/sstream.tcc (seekoff): Adjust.
220
221 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
222
223         * src/localename.cc: Standardize exception strings.
224         * src/locale.cc: Same.
225         * src/ios.cc: Same.
226         * include/bits/basic_string.tcc: Same.
227         * include/bits/basic_ios.tcc: Same.
228         * include/std/std_bitset.h: Same.
229         * include/ext/ropeimpl.h: Same.
230         * include/bits/stl_vector.h: Same.
231         * include/bits/stl_deque.h: Same.
232         * include/bits/stl_bvector.h: Same.
233         * config/locale/generic/c_locale.cc: Same.
234         * config/locale/gnu/c_locale.cc: Same.
235         * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Same.
236
237         * testsuite/testsuite_hooks.cc (__gnu_cxx_test): Modify.
238         
239 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
240
241         * include/std/std_streambuf.h (_M_buf_size): is currently
242         used only for basic_filebuf, therefore move it there.
243         (basic_streambuf(), ~basic_streambuf()): Adjust.
244         * include/std/std_fstream.h (_M_buf_size): Moved here.
245         * include/bits/fstream.tcc (basic_filebuf()): Adjust.
246
247 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
248
249         * include/bits/streambuf.tcc (__copy_streambufs): Don't use
250         _M_buf_size (synced input is now correctly dealt with
251         elsewhere); when the output buffer is full don't fall back
252         to a snextc-sputc loop, call overflow instead.
253
254 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
255
256         * include/bits/sstream.tcc (pbackfail): Shorten a bit (6 lines)
257         the innermost 'if' by factoring out some code.
258
259 2003-04-28  Phil Edwards  <pme@gcc.gnu.org>
260
261         * configure.in:  Test for libintl.h.
262         * include/bits/c++config:  Define __N for everybody.
263         * include/bits/basic_string.h, include/bits/stl_bvector.h,
264         include/bits/stl_deque.h, include/bits/stl_vector.h,
265         include/std/std_bitset.h:  Wrap all __throw* text with __N.
266         * po/Makefile.am (pot):  New rule, mostly working.
267         * src/functexcept.cc:  Call gettext on all __throw* arguments when
268         -fexceptions is in effect.
269         * po/Makefile.in, config.h.in, configure:  Regenerate.
270
271 2003-04-28  Petur Runolfsson  <peturr02@ru.is>
272  
273         PR libstdc++/9523
274         * include/bits/ios_base.h (Init::_S_ios_create,
275         Init::_S_ios_destroy):  Remove declarations.
276         (Init::_S_create_buffers,
277         Init::_S_destroy_buffers):  Declare
278         * src/ios.cc (Init::_S_ios_create):  Remove
279         (Init::_S_create_buffers):  Create buffers and add to streams.
280         (Init::_S_ios_destroy):  Rename to...
281         (Init::_S_destroy_buffers):  this.
282         (Init::Init):  Only construct streams once.
283         (Init::~Init):  Flush streams, don't destroy them.
284         (ios_base::sync_with_stdio):  Don't destroy streams, only buffers.
285         * testsuite/27_io/ios_base/sync_with_stdio/9523.cc:  New test.
286         * testsuite/27_io/objects/char/5.cc:  New test.
287         * testsuite/27_io/objects/char/5268.cc:  Avoid undefined behavior.
288         * testsuite/27_io/objects/char/6.cc:  New test.
289         * testsuite/27_io/objects/char/7.cc:  New test.
290
291 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
292
293         * testsuite/27_io/objects/char/8.cc:  New test.
294         
295 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
296
297         * testsuite/22_locale/codecvt/unicode/char.cc: Remove bom usage.
298         * testsuite/22_locale/codecvt/unicode/wchar_t.cc: Same.
299         
300 2003-04-27  Benjamin Kosnik  <bkoz@redhat.com>
301
302         * include/std/std_fstream.h (basic_filebuf): _M_pback_destroy to
303         _M_destroy_pback. _M_pback_create to
304         _M_create_pback. _M_underflow_common to
305         _M_underflow. _M_really_overflow to _M_overflow.
306         * include/bits/fstream.tcc: Same.
307         * src/fstream.cc: Same.
308         * include/std/std_streambuf.h (basic_streambuf): _M_in_cur_move to
309         _M_move_in_cur.  _M_out_cur_move to _M_move_out_cur.
310         * include/bits/streambuf.tcc: Same.
311         * include/bits/fstream.tcc: Same.
312         * include/bits/sstream.tcc: Same.
313         
314 2003-04-27  Benjamin Kosnik  <bkoz@redhat.com>
315
316         * include/bits/locale_classes.h (locale::_Impl): Change _M_names
317         from fixed size array.
318         (locale): Change _S_categories as well.
319         Formatting tweaks.
320         * include/bits/locale_facets.tcc: Tweak.
321         * config/locale/gnu/c_locale.cc: Assign _S_categories.
322         * config/locale/generic/c_locale.cc: Same.
323         * src/locale.cc: Tweak.
324         * src/globals.cc: Change facet_name to name_vec, add names_c.
325         * src/localename.cc: Use them.
326         (locale::_Impl::~_Impl): Destroy _M_names.
327         (locale::_Impl::_Impl): Create _M_names.
328         
329 2003-04-27  Andreas Schwab  <schwab@suse.de>
330
331         * config/locale/ieee_1003.1-2001/codecvt_specializations.h
332         (__enc_traits): Use __ibom and __ebom instead of ignoring them.
333
334 2003-04-27  Nathan Myers  <ncm@cantrip.org>
335
336         Move some basic_string members out of line because
337         they are too big to reasonably be inline.
338         * include/bits/basic_string.h
339         (assign(const basic_string&, size_type, size_type),
340         assign(const _CharT*, size_type),
341         insert(size_type, const basic_string&, size_type, size_type),
342         insert(size_type, const _CharT*, size_type),
343         replace(size_type, size_type, const _CharT*, size_type)):
344         Move from here to...
345         * include/bits/basic_string.tcc: ...here.
346         
347 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
348
349         * include/bits/fstream.tcc (pbackfail): Shorten a bit (10 lines)
350         the innermost 'if' by factoring out some code.
351
352 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
353
354         * include/bits/streambuf.tcc (__copy_streambufs): Don't
355         use in_avail(), simplify.
356
357 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
358
359         * include/std/std_sstream.h (setbuf): don't set _M_buf_size,
360         in basic_stringbuf it's unused.
361         
362         * include/std/std_sstream.h (underflow): consistently use
363         _M_in_cur, not gptr().
364
365 2003-04-25  Ranjit Mathew  <rmathew@hotmail.com>
366             Phil Edwards  <pme@gcc.gnu.org>
367         
368         * testsuite_flags.in: Guard against the possibility
369         of having "xgcc" as a part of a folder name in the
370         path to the GCC build folder.
371         * testsuite/Makefile.am: Likewise.
372         * testsuite/Makefile.in: Regenerated.
373         
374 2003-04-25  Benjamin Kosnik  <bkoz@redhat.com>
375
376         PR libstdc++/10132
377         * include/std/std_fstream.h (basic_filebuf::is_open): Add throw()
378         exception specifications.
379         (basic_filebuf::close): Same.
380         (basic_filebuf::_M_pback_destroy): Same.
381         (basic_filebuf::_M_destroy_internal_buffer): Same.
382         (basic_filebuf): Remove __res_type typedef.     
383         * src/fstream.cc: Same.
384         * include/bits/fstream.tcc
385         (basic_filebuf::_M_convert_to_external): Simplify.
386         (basic_filebuf::seekoff): Use has_facet before use_facet.
387         (basic_filebuf::close): Add exception specification of throw().
388         * testsuite/27_io/basic_filebuf/cons: New.
389         * testsuite/27_io/basic_filebuf/cons/wchar_t: New.      
390         * testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc: New.   
391         * testsuite/27_io/basic_filebuf/seekoff/10132-2.cc: New.
392         * testsuite/27_io/basic_filebuf/seekpos/10132-3.cc: New.
393
394 2003-04-25  Benjamin Kosnik  <bkoz@redhat.com>
395         
396         * include/bits/locale_classes.h
397         (locale::_S_extra_categories_size): Remove.
398         * src/locale.cc: Remove _S_extra_categories_size.
399         * src/localename.cc: Same.
400         * config/locale/gnu/c_locale.cc: Same.
401         * config/locale/generic/c_locale.cc: Same.
402         
403 2003-04-24  Richard Sandiford  <rsandifo@redhat.com>
404
405         * src/localename.cc (__gnu_cxx::facet_vec): Correct types.
406
407 2003-04-24  Phil Edwards  <pme@gcc.gnu.org>
408
409         * docs/html/17_intro/howto.html:  Update some links.
410         * docs/html/18_support/howto.html:  Link doxygen numeric_limits notes.
411         * docs/html/27_io/howto.html:  Link doxygen stdio_filebuf notes.
412         * docs/html/ext/howto.html:  Link to demangler notes and API.
413         * docs/html/faq/index.html:  Remove trailing whitespace.
414         (1.4, 2.4, 3.8, 4.1):  Bring up to date.
415         (5.6):  Change to a bulleted list.
416
417         * docs/html/faq/index.txt, docs/html/documentation.html,
418         docs/html/17_intro/porting.html:  Regenerate.
419
420 2003-04-23  Paolo Carlini  <pcarlini@unitus.it>
421
422         * testsuite/27_io/basic_filebuf/3.cc: _S_pback_size now
423         belongs to basic_filebuf.
424         * testsuite/27_io/basic_fstream/3.cc: Likewise.
425         * testsuite/27_io/basic_ifstream/3.cc: Likewise.
426         * testsuite/27_io/basic_ios/3.cc: Remove _S_pback_size
427         instantiation (now belongs to basic_filebuf).
428         * testsuite/27_io/basic_iostream/3.cc: Likewise.
429         * testsuite/27_io/basic_istream/3.cc: Likewise.
430         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc:
431         _S_pback_size now belongs to basic_filebuf.
432         * testsuite/27_io/basic_istringstream/3.cc: Remove _S_pback_size
433         instantiation (now belongs to basic_filebuf).
434         * testsuite/27_io/basic_ofstream/3.cc: _S_pback_size now
435         belongs to basic_filebuf.
436         * testsuite/27_io/basic_ostream/3.cc: Remove _S_pback_size
437         instantiation (now belongs to basic_filebuf).
438         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc:
439         _S_pback_size now belongs to basic_filebuf.
440         * testsuite/27_io/basic_ostringstream/3.cc: Remove _S_pback_size
441         instantiation (now belongs to basic_filebuf).
442         * testsuite/27_io/basic_streambuf/3.cc: _S_pback_size now belongs
443         to basic_filebuf.
444         * testsuite/27_io/basic_stringbuf/3.cc: Remove _S_pback_size
445         instantiation (now belongs to basic_filebuf).
446         * testsuite/27_io/basic_stringstream/3.cc: Likewise.
447
448 2003-04-23  Benjamin Kosnik  <bkoz@redhat.com>
449
450         * configure.in: Move GLIBCPP_CHECK_PCH before native/cross conditions.
451         * configure: Regenerated.
452         
453 2003-04-23  Benjamin Kosnik  <bkoz@redhat.com>
454         
455         * config/locale/generic/c_locale.h (__convert_from_v): Use
456         attribute unused.
457
458 2003-04-23  Phil Edwards  <pme@gcc.gnu.org>
459
460         * docs/html/ext/howto.html ('LWG Issues'):  Add issue 60, partial
461         implementation only.
462         * include/bits/istream.tcc (putback, unget, sync, tellg, seekg):
463         Comment and change to comply with DR 60 and the effect on gcount().
464         * include/std/std_istream.h:  Update comments.
465         * testsuite/27_io/basic_istream/putback/char/1.cc (test01):  Add
466         comments about reasons for tests.  Test sync() against gcount().
467         * testsuite/27_io/basic_istream/seekg/char/2.cc:  New file, test
468         for effect on gcount().
469         * testsuite/27_io/basic_istream/tellg/char/2.cc:  New file, test
470         for effect on gcount().
471
472 2003-04-22  Loren J. Rittle  <ljrittle@acm.org>
473
474         * testsuite/27_io/basic_filebuf/close/char/9964.cc (test_07):
475         Adjust timing.
476
477 2003-04-22  Paolo Carlini  <pcarlini@unitus.it>
478
479         * include/std/std_streambuf.h (_S_pback_size, _M_pback,
480         _M_pback_cur_save, _M_pback_end_save, _M_pback_init,
481         _M_pback_create(), _M_pback_destroy()): Move to basic_filebuf.
482         (basic_streambuf::basic_streambuf()): Adjust.
483         * include/std/std_fstream.h (_S_pback_size, _M_pback,
484         _M_pback_cur_save, _M_pback_end_save, _M_pback_init,
485         _M_pback_create(), _M_pback_destroy()): Moved here
486         from basic_streambuf.
487         * include/bits/fstream.tcc (basic_filebuf::basic_filebuf()):
488         Adjust.
489         (basic_filebuf::_S_pback_size): Add declaration.
490         * include/bits/streambuf.tcc (basic_streambuf::_S_pback_size):
491         Remove declaration.
492
493 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
494
495         Consistently use _M_in_beg instead of eback(), _M_in_cur
496         instead of gptr(), and so on.
497         * include/bits/fstream.tcc (pbackfail, imbue): Here.
498         * include/bits/sstream.tcc (pbackfail, seekoff, seekpos): Ditto.
499         * include/bits/streambuf.tcc (sbumpc, sputbackc,
500         __copy_streambufs): Ditto.
501         * include/std/std_streambuf.h (sgetc): Ditto.
502
503 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
504
505         * include/bits/sstream.tcc (pbackfail, overflow):
506         Formatting fixes.
507
508 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
509
510         * include/std/std_streambuf.h (uflow()): It's used only by
511         basic_stringbuf (i.e., basic_filebuf provide its own uflow()),
512         therefore do not consider the _M_buf_unified == true case.
513
514         * include/std/std_streambuf.h (sgetc()): Restore __ret variable.
515
516 2003-04-20  Paolo Carlini  <pcarlini@unitus.it>
517
518         * docs/html/ext/howto.html ('LWG Issues'):
519         Add issues 19, 90, 171, 231, 271.
520
521 2003-04-20  Paolo Carlini  <pcarlini@unitus.it>
522
523         * include/bits/sstream.tcc (pbackfail): Remove redundant
524         NULL pointer check from test involving _M_in_*.
525         (overflow, seekoff, seekpos): Const qualify bool variables.
526         * include/std/std_sstream.h (underflow): Remove redundant
527         NULL pointer check from test involving _M_in_*.
528         (_M_really_sync): Const qualify bool variables.
529         * src/fstream.cc (_M_underflow_common): Remove redundant
530         NULL pointer check from test involving _M_in_*, const qualify
531         bool variables.
532
533         * include/std/std_streambuf.h (sgetc): Remove redundant
534         variable.
535
536 2003-04-18  Paolo Carlini  <pcarlini@unitus.it>
537
538         According to 5.9 para 2 (second bullet) for pointers p, q
539         pointing to the same type, with  p == 0 and q == 0, (p < q)
540         is false.
541         * include/bits/fstream.tcc (close, overflow, _M_really_overflow,
542         seekoff): Remove redundant NULL pointer checks from tests
543         involving _M_out_* and _M_in_*, const qualify bool variables.
544         (showmanyc, pbackfail, _M_convert_to_external, imbue): Const
545         qualify bool variables.
546         * include/bits/streambuf.tcc (sbumpc, sputbackc, sungetc, sputc):
547         Remove redundant NULL pointer checks from tests involving
548         _M_out_* and _M_in_*, const qualify bool variables.
549         * include/std/std_fstream.h (sync): Likewise.
550         (_M_is_indeterminate): Const qualify bool variables.
551         * include/std/std_streambuf.h (sgetc, uflow): Remove redundant
552         NULL pointer checks from tests involving _M_out_* and _M_in_*,
553         const qualify bool variables.
554         (_M_in_cur_move, _M_out_cur_move, uflow): Const qualify bool
555         variables.
556
557 2003-04-18  Loren J. Rittle  <ljrittle@acm.org>
558
559         * include/c_std/std_cmath.h (C99 FP capture): Only undefine said
560         C99 FP macros, if actually captured.
561
562         * docs/html/17_intro/porting.texi (_GLIBCPP_USE_C99_CHECK): New macro.
563         (_GLIBCPP_USE_C99_DYNAMIC): New macro.
564         (_GLIBCPP_USE_C99_LONG_LONG_CHECK): New macro.
565         (_GLIBCPP_USE_C99_LONG_LONG_DYNAMIC): New macro.
566         * config/os/bsd/freebsd/os_defines.h (_GLIBCPP_USE_C99_CHECK):
567         New macro.
568         (_GLIBCPP_USE_C99_DYNAMIC): New macro.
569         (_GLIBCPP_USE_C99_LONG_LONG_CHECK): New macro.
570         (_GLIBCPP_USE_C99_LONG_LONG_DYNAMIC): New macro.
571         * include/c_std/std_cstdlib.h: Use new macros.
572         * include/c_std/std_cstdio.h: Use new macros.
573         * include/c_std/std_cwchar.h: Use new macros.
574
575 2003-04-17  Benjamin Kosnik  <bkoz@redhat.com>
576
577         PR libstdc++/9555
578         * include/bits/ostream.tcc: Catch all exceptions for formatted
579         output, instead of std::exception and derivatives.
580         * include/bits/istream.tcc: Same.
581         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/9555-oa.cc:
582         * testsuite/27_io/basic_ostream/inserters_character/char/9555-oc.cc:
583         * testsuite/27_io/basic_ostream/inserters_other/char/9555-oo.cc:
584         * testsuite/27_io/basic_istream/extractors_arithmetic/char/9555-ia.cc:
585         * testsuite/27_io/basic_istream/extractors_character/char/9555-ic.cc:
586         * testsuite/27_io/basic_istream/extractors_other/char/9555-io.cc:
587         New.
588
589 2003-04-17  Phil Edwards  <pme@gcc.gnu.org>
590
591         * include/bits/c++config:  Minor cosmetic tweaks.
592
593 2003-04-17  Loren J. Rittle  <ljrittle@acm.org>
594
595         * testsuite_flags.in (PCHFLAGS): Find PCH in new home.
596         * include/Makefile.am (pch_input): Find in ${target_builddir}.
597         (pch_output): Rename to...
598         (pch_output_builddir): ..this.  Find in ${target_builddir}.
599         (pch_source): Tweak.
600         (pch_build): Key off a built file.
601         (pch_output rule): Rename to...
602         (pch_input rule): ...this.  Produce ${pch_output_builddir}
603         instead of ${pch_output}.
604         (install-pch rule): Install ${pch_output_builddir}.
605         * include/Makefile.in: Regenerated.
606
607 2003-04-17  Paolo Carlini  <pcarlini@unitus.it>
608
609         * include/std/std_streambuf.h (setp): _M_out_lim, being
610         the end limit of used put area, is set equal to _M_out_beg.
611
612 2003-04-16  Benjamin Kosnik  <bkoz@redhat.com>
613
614         * acinclude.m4 (GLIBCPP_CHECK_PCH): New.
615         * aclocal.m4: Regenerated.
616         * configure.in: Remove old demangler bits.
617         Call pch checks.
618         * configure: Regenerate.
619         * config.h.in: Regenerate.
620         * include/Makefile.am (allstamps): Now allstamped.
621         (allcreated): Define this.
622         (all-local): Use 'em.
623         Conditionally define pch_build, pch_install based on
624         GLIBCPP_BUILD_PCH.
625         (${pch_output}): New rule.
626         (install-pch): New rule.
627         (install-headers): New rule.
628         (install-data-local): Install headers and conditionally pch.
629         * include/Makefile.in: Regenerate.
630         * testsuite_flags.in (--build-cxx): Use pch file.
631
632 2003-04-16  Jonathan Wakely  <redi@gcc.gnu.org>
633
634         * docs/html/ext/sgiexts.html: Fix path to stylesheet.
635
636 2003-04-15  Benjamin Kosnik  <bkoz at redhat dot com>
637             Paolo Carlini  <pcarlini at unitus dot it>
638
639         PR libstdc++/9423
640         * docs/html/27_io/howto.html
641         ('The buffering is screwing up my program!'): Explain that
642         opening counts as an I/O operation.
643
644 2003-04-15  Andreas Tobler  <a.tobler@schweiz.ch>
645
646         * testsuite/thread/pthread1.cc: Enable for darwin test.
647         * testsuite/thread/pthread2.cc: Same.
648         * testsuite/thread/pthread3.cc: Same.
649         * testsuite/thread/pthread4.cc: Same.
650         * testsuite/thread/pthread5.cc: Same.
651         * testsuite/thread/pthread6.cc: Same.
652  
653 2003-04-15  Loren J. Rittle  <ljrittle@acm.org>
654
655         libstdc++/7680
656         * include/c_std/std_cmath.h (__gnu_cx::__c99_binding): New namespace.
657         Populate it with multiple legal ways to obtain the C99 float
658         transcendentals.  Use them instead of direct global reference.
659         (C99 FP capture): Guard usage with _GLIBCPP_USE_C99_FP_MACROS_DYNAMIC.
660         * docs/html/17_intro/porting.texi
661         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_CHECK): New macro.
662         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_DYNAMIC): New macro.
663         (_GLIBCPP_USE_C99_FP_MACROS_DYNAMIC): New macro.
664         * config/os/bsd/freebsd/os_defines.h
665         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_CHECK): New macro.
666         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_DYNAMIC): New macro.
667         * testsuite/26_numerics/c_math_dynamic.cc: New file.
668
669 2003-04-14  Andreas Tobler  <toa@pop.agri.ch>
670             Benjamin Kosnik  <bkoz@redhat.com>
671
672         * config/os/generic/ctype_inline.h: Fix.
673         
674 2003-04-14  Benjamin Kosnik  <bkoz@redhat.com>
675         
676         * testsuite/testsuite_hooks.h
677         (__gnu_cxx_test::run_test_wrapped_generic_locale_exception_catcher):
678         Change to try_named_locale.
679         * testsuite/testsuite_hooks.cc (__gnu_cxx_test): Same.
680
681         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc: Use
682         try_named_locale.
683         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc: Same.
684         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc: Same.
685         * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc: Same.
686         * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc: Same.
687         * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc: Same.
688         * testsuite/22_locale/codecvt/in/wchar_t/2.cc: Same.
689         * testsuite/22_locale/codecvt/in/wchar_t/3.cc: Same.
690         * testsuite/22_locale/codecvt/in/wchar_t/4.cc: Same.
691         * testsuite/22_locale/codecvt/in/wchar_t/7.cc: Same.
692         * testsuite/22_locale/codecvt/in/wchar_t/8.cc: Same.
693         * testsuite/22_locale/codecvt/in/wchar_t/9.cc: Same.
694         * testsuite/22_locale/codecvt/length/wchar_t/2.cc: Same.
695         * testsuite/22_locale/codecvt/length/wchar_t/3.cc: Same.
696         * testsuite/22_locale/codecvt/length/wchar_t/4.cc: Same.
697         * testsuite/22_locale/codecvt/length/wchar_t/7.cc: Same.
698         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc: Same.
699         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc: Same.
700         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc: Same.
701         * testsuite/22_locale/codecvt/out/wchar_t/2.cc: Same.
702         * testsuite/22_locale/codecvt/out/wchar_t/3.cc: Same.
703         * testsuite/22_locale/codecvt/out/wchar_t/4.cc: Same.
704         * testsuite/22_locale/codecvt/out/wchar_t/7.cc: Same.
705         * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc: Same.
706         * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc: Same.
707         * testsuite/22_locale/codecvt/unshift/wchar_t/4.cc: Same.
708         * testsuite/22_locale/collate/compare/char/1.cc: Same.
709         * testsuite/22_locale/collate/compare/char/2.cc: Same.
710         * testsuite/22_locale/collate/compare/char/3.cc: Same.
711         * testsuite/22_locale/collate/compare/wchar_t/1.cc: Same.
712         * testsuite/22_locale/collate/compare/wchar_t/2.cc: Same.
713         * testsuite/22_locale/collate/compare/wchar_t/3.cc: Same.
714         * testsuite/22_locale/collate/hash/char/2.cc: Same.
715         * testsuite/22_locale/collate/hash/wchar_t/2.cc: Same.
716         * testsuite/22_locale/collate/transform/char/2.cc: Same.
717         * testsuite/22_locale/collate/transform/char/3.cc: Same.
718         * testsuite/22_locale/collate/transform/wchar_t/2.cc: Same.
719         * testsuite/22_locale/collate/transform/wchar_t/3.cc: Same.
720         * testsuite/22_locale/collate_byname/1.cc: Same.
721         * testsuite/22_locale/ctype/is/char/2.cc: Same.
722         * testsuite/22_locale/ctype/is/wchar_t/2.cc: Same.
723         * testsuite/22_locale/ctype/narrow/wchar_t/3.cc: Same.
724         * testsuite/22_locale/ctype/widen/wchar_t/2.cc: Same.
725         * testsuite/22_locale/ctype/widen/wchar_t/3.cc: Same.
726         * testsuite/22_locale/facet/2.cc: Same.
727         * testsuite/22_locale/locale/cons/2.cc: Same.
728         * testsuite/22_locale/locale/cons/4.cc: Same.
729         * testsuite/22_locale/locale/cons/5.cc: Same.
730         * testsuite/22_locale/locale/cons/7.cc: Same.
731         * testsuite/22_locale/locale/cons/7222-c.cc: Same.
732         * testsuite/22_locale/locale/cons/7222-env.cc: Same.
733         * testsuite/22_locale/locale/global_locale_objects/2.cc: Same.
734         * testsuite/22_locale/messages/members/char/1.cc: Same.
735         * testsuite/22_locale/messages/members/char/2.cc: Same.
736         * testsuite/22_locale/messages/members/char/3.cc: Same.
737         * testsuite/22_locale/messages_byname/1.cc: Same.
738         * testsuite/22_locale/money_get/get/char/1.cc: Same.
739         * testsuite/22_locale/money_get/get/char/2.cc: Same.
740         * testsuite/22_locale/money_get/get/char/3.cc: Same.
741         * testsuite/22_locale/money_get/get/char/4.cc: Same.
742         * testsuite/22_locale/money_get/get/wchar_t/1.cc: Same.
743         * testsuite/22_locale/money_get/get/wchar_t/2.cc: Same.
744         * testsuite/22_locale/money_get/get/wchar_t/3.cc: Same.
745         * testsuite/22_locale/money_get/get/wchar_t/4.cc: Same.
746         * testsuite/22_locale/money_put/put/char/1.cc: Same.
747         * testsuite/22_locale/money_put/put/char/2.cc: Same.
748         * testsuite/22_locale/money_put/put/char/3.cc: Same.
749         * testsuite/22_locale/money_put/put/wchar_t/1.cc: Same.
750         * testsuite/22_locale/money_put/put/wchar_t/2.cc: Same.
751         * testsuite/22_locale/money_put/put/wchar_t/3.cc: Same.
752         * testsuite/22_locale/moneypunct/members/char/2.cc: Same.
753         * testsuite/22_locale/moneypunct/members/wchar_t/2.cc: Same.
754         * testsuite/22_locale/moneypunct_byname/1.cc: Same.
755         * testsuite/22_locale/num_get/get/char/1.cc: Same.
756         * testsuite/22_locale/num_get/get/char/2.cc: Same.
757         * testsuite/22_locale/num_get/get/char/3.cc: Same.
758         * testsuite/22_locale/num_get/get/char/5.cc: Same.
759         * testsuite/22_locale/num_get/get/char/6.cc: Same.
760         * testsuite/22_locale/num_get/get/wchar_t/1.cc: Same.
761         * testsuite/22_locale/num_get/get/wchar_t/2.cc: Same.
762         * testsuite/22_locale/num_get/get/wchar_t/3.cc: Same.
763         * testsuite/22_locale/num_get/get/wchar_t/5.cc: Same.
764         * testsuite/22_locale/num_get/get/wchar_t/6.cc: Same.
765         * testsuite/22_locale/num_put/put/char/1.cc: Same.
766         * testsuite/22_locale/num_put/put/char/2.cc: Same.
767         * testsuite/22_locale/num_put/put/char/3.cc: Same.
768         * testsuite/22_locale/num_put/put/char/5.cc: Same.
769         * testsuite/22_locale/num_put/put/wchar_t/1.cc: Same.
770         * testsuite/22_locale/num_put/put/wchar_t/2.cc: Same.
771         * testsuite/22_locale/num_put/put/wchar_t/3.cc: Same.
772         * testsuite/22_locale/num_put/put/wchar_t/5.cc: Same.
773         * testsuite/22_locale/numpunct/members/char/1.cc: Same.
774         * testsuite/22_locale/numpunct/members/char/2.cc: Same.
775         * testsuite/22_locale/numpunct/members/wchar_t/1.cc: Same.
776         * testsuite/22_locale/numpunct/members/wchar_t/2.cc: Same.
777         * testsuite/22_locale/numpunct_byname/1.cc: Same.
778         * testsuite/22_locale/numpunct_byname/2.cc: Same.
779         * testsuite/22_locale/time_get/date_order/char/1.cc: Same.
780         * testsuite/22_locale/time_get/date_order/wchar_t/1.cc: Same.
781         * testsuite/22_locale/time_get/get_date/char/1.cc: Same.
782         * testsuite/22_locale/time_get/get_date/char/2.cc: Same.
783         * testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Same.
784         * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Same.
785         * testsuite/22_locale/time_get/get_monthname/char/1.cc: Same.
786         * testsuite/22_locale/time_get/get_monthname/char/2.cc: Same.
787         * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Same.
788         * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Same.
789         * testsuite/22_locale/time_get/get_time/char/1.cc: Same.
790         * testsuite/22_locale/time_get/get_time/char/2.cc: Same.
791         * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Same.
792         * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Same.
793         * testsuite/22_locale/time_get/get_weekday/char/1.cc: Same.
794         * testsuite/22_locale/time_get/get_weekday/char/2.cc: Same.
795         * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Same.
796         * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Same.
797         * testsuite/22_locale/time_get/get_year/char/1.cc: Same.
798         * testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Same.
799         * testsuite/22_locale/time_put/put/char/1.cc: Same.
800         * testsuite/22_locale/time_put/put/char/2.cc: Same.
801         * testsuite/22_locale/time_put/put/char/3.cc: Same.
802         * testsuite/22_locale/time_put/put/char/4.cc: Same.
803         * testsuite/22_locale/time_put/put/char/5.cc: Same.
804         * testsuite/22_locale/time_put/put/char/6.cc: Same.
805         * testsuite/22_locale/time_put/put/char/7.cc: Same.
806         * testsuite/22_locale/time_put/put/char/8.cc: Same.
807         * testsuite/22_locale/time_put/put/wchar_t/1.cc: Same.
808         * testsuite/22_locale/time_put/put/wchar_t/2.cc: Same.
809         * testsuite/22_locale/time_put/put/wchar_t/3.cc: Same.
810         * testsuite/22_locale/time_put/put/wchar_t/4.cc: Same.
811         * testsuite/22_locale/time_put/put/wchar_t/5.cc: Same.
812         * testsuite/22_locale/time_put/put/wchar_t/6.cc: Same.
813         * testsuite/22_locale/time_put/put/wchar_t/7.cc: Same.
814         * testsuite/22_locale/time_put/put/wchar_t/8.cc: Same.
815         * testsuite/27_io/basic_filebuf/imbue/char/9322.cc: Same.
816         * testsuite/27_io/basic_ios/copyfmt/char/2.cc: Same.
817         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/2.cc: Same.
818         * testsuite/27_io/basic_streambuf/imbue/char/9322.cc: Same.
819         * testsuite/27_io/basic_stringbuf/imbue/char/9322.cc: Same.
820         
821 2003-04-14  Andreas Tobler  <toa@pop.agri.ch>
822             
823         * configure.target (_cpu_incdir_fullpath): Solaris 2.9 uses
824         solaris includes, not generic.
825
826 2003-04-14  Loren J. Rittle  <ljrittle@acm.org>
827
828         * testsuite/26_numerics/c99_classification_macros_c.cc: Add XFAIL.
829
830         * include/std/std_bitset.h (_M_do_find_next): Fix -Wall nit.
831         * include/bits/concept_check.h: Fix multi-line comment.
832         * testsuite/17_intro/headers.cc (dg-options): Add -Wall -Wsystem-header
833         when target is *-*-freebsd*.
834
835 2003-04-14  Nathan Myers  <ncm@cantrip.org>
836             Paolo Carlini  <pcarlini@unitus.it>
837
838         PR libstdc++/9701 (in_avail())
839         * include/std/std_streambuf.h (in_avail): Simplify, in_avail
840         doesn't care if there is anything in some putback cell.
841         * testsuite/27_io/basic_streambuf/in_avail/char/9701-3.cc: Add.
842
843         * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Remove some
844         unused string literals.
845
846 2003-04-14  Paolo Carlini  <pcarlini@unitus.it>
847
848         * include/bits/fstream.tcc (basic_filebuf::setbuf): Don't set
849         _M_out_end, _M_set_indeterminate() does it.
850
851 2003-04-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
852
853         * os/hpux/ctype_inline.h: Replace with gnu-linux version.
854
855 2003-04-12  David Edelsohn  <edelsohn@gnu.org>
856
857         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc:
858         Change basic_streambuf instantiation to "unsigned char".
859         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
860
861 2003-04-12  Paolo Carlini  <pcarlini@unitus.it>
862
863         Remove _M_buf_size_opt, use directly _M_buf_size instead.
864         * include/bits/fstream.tcc
865         (basic_filebuf::_M_allocate_internal_buffer, setbuf): Remove
866         references to _M_buf_size_opt. 
867         * include/bits/sstream.tcc (basic_stringbuf::overflow): Likewise.
868         * include/bits/streambuf.tcc (__copy_streambufs): Likewise, rename
869         __bufsize to __in_avail and __size_opt to __buf_size.
870         * include/ext/stdio_filebuf.h (stdio_filebuf::stdio_filebuf): Likewise.
871         * include/std/std_sstream.h (_M_stringbuf_init, setbuf): Likewise.
872         * include/std/std_streambuf.h (~basic_streambuf(),
873         basic_streambuf()): Likewise, remove _M_buf_size_opt member.
874         * testsuite/27_io/basic_filebuf/close/char/3.cc: Set _M_buf_size.
875         * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Likewise.
876         * testsuite/27_io/basic_filebuf/sbumpc/char/1.cc: Likewise.
877         * testsuite/27_io/basic_filebuf/seekoff/char/1.cc: Likewise.
878         * testsuite/27_io/basic_filebuf/seekpos/char/1.cc: Likewise.
879         * testsuite/27_io/basic_filebuf/sgetc/char/1.cc: Likewise.
880         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc: Likewise.
881         * testsuite/27_io/basic_filebuf/snextc/char/1.cc: Likewise.
882         * testsuite/27_io/basic_filebuf/sputbackc/char/1.cc: Likewise.
883         * testsuite/27_io/basic_filebuf/sputc/char/1.cc: Likewise.
884         * testsuite/27_io/basic_filebuf/sputn/char/1.cc: Likewise.
885         * testsuite/27_io/basic_filebuf/sungetc/char/1.cc: Likewise.
886
887 2003-04-12  Paolo Carlini  <pcarlini at unitus dot it>
888
889         * include/ext/stdio_filebuf.h
890         (stdio_filebuf::stdio_filebuf(int, openmode, bool, size_t),
891         stdio_filebuf::stdio_filebuf(__c_file*, openmode, size_t):
892         _M_buf_size_opt == 0 only means "not to use an allocated buffer"
893         since a stack-based buffer is used for small values of the size_t
894         parameter.
895         * include/bits/fstream.tcc (basic_filebuf::_M_really_overflow).
896         If _M_buf_size != 0 flush out the buffer (any kind, stack-based too).
897         * testsuite/ext/stdio_filebuf_2.cc: New testfile.
898
899 2003-04-12  Paolo Carlini  <pcarlini@unitus.it>
900
901         PR libstdc++/9533
902         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc: New.
903         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-2.cc: Ditto.
904
905 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
906
907         * testsuite/22_locale/locale/cons/3.cc: Split.
908         * testsuite/22_locale/locale/cons/7222-c.cc: New.
909         * testsuite/22_locale/locale/cons/7222-env.cc: New.     
910         Check before trying to create a locale from the environment.
911         * testsuite/27_io/ios_base/state/1.cc (test02): Use "C" locale.
912         * testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc:
913         Adjust includes.
914         
915 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
916
917         * testsuite/22_locale/ctype/is/char/3.cc (test03): Use the classic
918         locale to construct this hybrid locale, not the global locale.
919
920 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
921
922         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Add
923         instantiation for AIX.
924         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
925         * testsuite/25_algorithms/min_max.cc: Same.
926         
927 2003-04-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
928
929         * basic_file_stdio.cc (__basic_file<char>::close): Don't flush stream
930         twice.  Always set _M_cfile to 0 when stream was open.
931
932 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
933
934         Reshuffle 27_io testsuite.  * testsuite/27_io/filebuf.cc,
935         filebuf_members-1.tst, filebuf_members-1.txt, filebuf_members.cc,
936         filebuf_virtuals-1.tst, filebuf_virtuals-1.txt,
937         filebuf_virtuals-2.tst, filebuf_virtuals-3.tst,
938         filebuf_virtuals.cc, fpos.cc, fstream.cc, fstream_members.cc,
939         ifstream.cc, ifstream_members-1.tst, ifstream_members-1.txt,
940         ifstream_members.cc, instantiations.cc, ios.cc,
941         ios_base_callbacks.cc, ios_base_members_static-1.tst,
942         ios_base_members_static.cc, ios_base_storage.cc,
943         ios_base_types.cc, ios_ctor.cc, ios_init.cc,
944         ios_manip_basefield.cc, ios_manip_fmtflags.cc, ios_members.cc,
945         iostream.cc, iostream_members.cc, istream.cc,
946         istream_exception.cc, istream_extractor_char.cc,
947         istream_extractor_other-1.tst, istream_extractor_other-1.txt,
948         istream_extractor_other-2.tst, istream_extractor_other.cc,
949         istream_manip.cc, istream_seeks-1.tst, istream_seeks-1.txt,
950         istream_seeks-2.tst, istream_seeks-3.tst, istream_seeks.cc,
951         istream_sentry.cc, istream_unformatted-1.tst,
952         istream_unformatted-1.txt, istream_unformatted.cc,
953         istringstream.cc, istringstream_members.cc,
954         narrow_stream_objects.cc, ofstream.cc, ofstream_members-1.tst,
955         ofstream_members.cc, ostream.cc, ostream_exception.cc,
956         ostream_fail.cc, ostream_inserter_arith.cc,
957         ostream_inserter_char-1.tst, ostream_inserter_char-1.txt,
958         ostream_inserter_char.cc, ostream_inserter_other-1.tst,
959         ostream_inserter_other-2.tst, ostream_inserter_other.cc,
960         ostream_manip.cc, ostream_seeks-1.tst, ostream_seeks.cc,
961         ostream_sentry.cc, ostream_unformatted.cc, ostringstream.cc,
962         ostringstream_members.cc, standard_manipulators.cc, streambuf.cc,
963         streambuf_members.cc, stringbuf.cc, stringbuf_members.cc,
964         stringbuf_virtuals.cc, stringstream.cc, stringstream_members.cc,
965         wide_stream_objects.cc, istream_extractor_arith/01.cc,
966         istream_extractor_arith/02.cc, istream_extractor_arith/03.cc,
967         istream_extractor_arith/06.cc, istream_extractor_arith/07.cc,
968         istream_extractor_arith/08.cc, istream_extractor_arith/09.cc,
969         istream_extractor_arith/10.cc, istream_extractor_arith/11.cc,
970         istream_extractor_arith/12.cc, istream_extractor_arith/13.cc:
971         Split into...
972         * 27_io/basic_filebuf/1.cc: New.
973         * 27_io/basic_filebuf/2.cc: New.
974         * 27_io/basic_filebuf/3.cc: New.
975         * 27_io/basic_filebuf/4.cc: New.
976         * 27_io/basic_filebuf/close/char/1.cc: New.
977         * 27_io/basic_filebuf/close/char/2.cc: New.
978         * 27_io/basic_filebuf/close/char/3.cc: New.
979         * 27_io/basic_filebuf/close/char/4879.cc: New.
980         * 27_io/basic_filebuf/close/char/9964.cc: New.
981         * 27_io/basic_filebuf/imbue/char/1.cc: New.
982         * 27_io/basic_filebuf/imbue/char/9322.cc: New.
983         * 27_io/basic_filebuf/in_avail/char/1.cc: New.
984         * 27_io/basic_filebuf/is_open/char/1.cc: New.
985         * 27_io/basic_filebuf/open/char/1.cc: New.
986         * 27_io/basic_filebuf/open/char/2.cc: New.
987         * 27_io/basic_filebuf/open/char/3.cc: New.
988         * 27_io/basic_filebuf/open/char/9507.cc: New.
989         * 27_io/basic_filebuf/overflow/char/1.cc: New.
990         * 27_io/basic_filebuf/overflow/char/3599.cc: New.
991         * 27_io/basic_filebuf/overflow/char/9169.cc: New.
992         * 27_io/basic_filebuf/overflow/char/9182-2.cc: New.
993         * 27_io/basic_filebuf/overflow/char/9988.cc: New.
994         * 27_io/basic_filebuf/sbumpc/char/1.cc: New.
995         * 27_io/basic_filebuf/sbumpc/char/9825.cc: New.
996         * 27_io/basic_filebuf/seekoff/char/1.cc: New.
997         * 27_io/basic_filebuf/seekoff/char/2.cc: New.
998         * 27_io/basic_filebuf/seekpos/char/1.cc: New.
999         * 27_io/basic_filebuf/seekpos/char/2.cc: New.
1000         * 27_io/basic_filebuf/setbuf/char/1.cc: New.
1001         * 27_io/basic_filebuf/setbuf/char/2.cc: New.
1002         * 27_io/basic_filebuf/setbuf/char/3.cc: New.
1003         * 27_io/basic_filebuf/sgetc/char/1.cc: New.
1004         * 27_io/basic_filebuf/sgetn/char/1.cc: New.
1005         * 27_io/basic_filebuf/sgetn/char/2.cc: New.
1006         * 27_io/basic_filebuf/snextc/char/1.cc: New.
1007         * 27_io/basic_filebuf/sputbackc/char/1.cc: New.
1008         * 27_io/basic_filebuf/sputbackc/char/9425.cc: New.
1009         * 27_io/basic_filebuf/sputc/char/1.cc: New.
1010         * 27_io/basic_filebuf/sputc/char/1057.cc: New.
1011         * 27_io/basic_filebuf/sputc/char/9701-2.cc: New.
1012         * 27_io/basic_filebuf/sputn/char/1.cc: New.
1013         * 27_io/basic_filebuf/sputn/char/1057.cc: New.
1014         * 27_io/basic_filebuf/sputn/char/9701-1.cc: New.
1015         * 27_io/basic_filebuf/sungetc/char/1.cc: New.
1016         * 27_io/basic_filebuf/sync/char/1057.cc: New.
1017         * 27_io/basic_filebuf/sync/char/9182-1.cc: New.
1018         * 27_io/basic_filebuf/underflow/char/10097.cc: New.
1019         * 27_io/basic_fstream/1.cc: New.
1020         * 27_io/basic_fstream/2.cc: New.
1021         * 27_io/basic_fstream/3.cc: New.
1022         * 27_io/basic_fstream/4.cc: New.
1023         * 27_io/basic_fstream/rdbuf/char/2832.cc: New.
1024         * 27_io/basic_ifstream/1.cc: New.
1025         * 27_io/basic_ifstream/2.cc: New.
1026         * 27_io/basic_ifstream/3.cc: New.
1027         * 27_io/basic_ifstream/4.cc: New.
1028         * 27_io/basic_ifstream/cons/char/1.cc: New.
1029         * 27_io/basic_ifstream/open/char/1.cc: New.
1030         * 27_io/basic_ifstream/rdbuf/char/2832.cc: New.
1031         * 27_io/basic_ios/1.cc: New.
1032         * 27_io/basic_ios/2.cc: New.
1033         * 27_io/basic_ios/3.cc: New.
1034         * 27_io/basic_ios/4.cc: New.
1035         * 27_io/basic_ios/clear/char/1.cc: New.
1036         * 27_io/basic_ios/cons/char/1.cc: New.
1037         * 27_io/basic_ios/cons/char/2.cc: New.
1038         * 27_io/basic_ios/cons/char/3.cc: New.
1039         * 27_io/basic_ios/copyfmt/char/1.cc: New.
1040         * 27_io/basic_ios/copyfmt/char/2.cc: New.
1041         * 27_io/basic_ios/exceptions/char/1.cc: New.
1042         * 27_io/basic_ios/locales/char/1.cc: New.
1043         * 27_io/basic_iostream/1.cc: New.
1044         * 27_io/basic_iostream/2.cc: New.
1045         * 27_io/basic_iostream/3.cc: New.
1046         * 27_io/basic_iostream/4.cc: New.
1047         * 27_io/basic_istream/1.cc: New.
1048         * 27_io/basic_istream/2.cc: New.
1049         * 27_io/basic_istream/3.cc: New.
1050         * 27_io/basic_istream/4.cc: New.
1051         * 27_io/basic_istream/exceptions/char/9561.cc: New.
1052         * 27_io/basic_istream/extractors_arithmetic/char/01.cc: New.
1053         * 27_io/basic_istream/extractors_arithmetic/char/02.cc: New.
1054         * 27_io/basic_istream/extractors_arithmetic/char/03.cc: New.
1055         * 27_io/basic_istream/extractors_arithmetic/char/06.cc: New.
1056         * 27_io/basic_istream/extractors_arithmetic/char/07.cc: New.
1057         * 27_io/basic_istream/extractors_arithmetic/char/08.cc: New.
1058         * 27_io/basic_istream/extractors_arithmetic/char/09.cc: New.
1059         * 27_io/basic_istream/extractors_arithmetic/char/10.cc: New.
1060         * 27_io/basic_istream/extractors_arithmetic/char/11.cc: New.
1061         * 27_io/basic_istream/extractors_arithmetic/char/12.cc: New.
1062         * 27_io/basic_istream/extractors_arithmetic/char/13.cc: New.
1063         * 27_io/basic_istream/extractors_character/char/1.cc: New.
1064         * 27_io/basic_istream/extractors_character/char/2.cc: New.
1065         * 27_io/basic_istream/extractors_character/char/3.cc: New.
1066         * 27_io/basic_istream/extractors_character/char/9826.cc: New.
1067         * 27_io/basic_istream/extractors_other/char/1.cc: New.
1068         * 27_io/basic_istream/extractors_other/char/2.cc: New.
1069         * 27_io/basic_istream/extractors_other/char/3.cc: New.
1070         * 27_io/basic_istream/extractors_other/char/9318-in.cc: New.
1071         * 27_io/basic_istream/extractors_other/char/9424-in.cc: New.
1072         * 27_io/basic_istream/get/char/1.cc: New.
1073         * 27_io/basic_istream/get/char/2.cc: New.
1074         * 27_io/basic_istream/getline/char/1.cc: New.
1075         * 27_io/basic_istream/getline/char/2.cc: New.
1076         * 27_io/basic_istream/getline/char/3.cc: New.
1077         * 27_io/basic_istream/ignore/char/1.cc: New.
1078         * 27_io/basic_istream/ignore/char/6360.cc: New.
1079         * 27_io/basic_istream/ignore/char/7220.cc: New.
1080         * 27_io/basic_istream/peek/char/1.cc: New.
1081         * 27_io/basic_istream/peek/char/6414.cc: New.
1082         * 27_io/basic_istream/putback/char/1.cc: New.
1083         * 27_io/basic_istream/read/char/1.cc: New.
1084         * 27_io/basic_istream/read/char/2.cc: New.
1085         * 27_io/basic_istream/read/char/3.cc: New.
1086         * 27_io/basic_istream/readsome/char/6746-1.cc: New.
1087         * 27_io/basic_istream/readsome/char/6746-2.cc: New.
1088         * 27_io/basic_istream/readsome/char/8258.cc: New.
1089         * 27_io/basic_istream/seekg/char/2346-fstream.cc: New.
1090         * 27_io/basic_istream/seekg/char/2346-sstream.cc: New.
1091         * 27_io/basic_istream/seekg/char/8348-1.cc: New.
1092         * 27_io/basic_istream/seekg/char/8348-2.cc: New.
1093         * 27_io/basic_istream/seekg/char/fstream.cc: New.
1094         * 27_io/basic_istream/seekg/char/sstream.cc: New.
1095         * 27_io/basic_istream/sentry/char/1.cc: New.
1096         * 27_io/basic_istream/sentry/char/2.cc: New.
1097         * 27_io/basic_istream/sentry/char/3.cc: New.
1098         * 27_io/basic_istream/sentry/char/3983-fstream.cc: New.
1099         * 27_io/basic_istream/sentry/char/3983-sstream.cc: New.
1100         * 27_io/basic_istream/tellg/char/1.cc: New.
1101         * 27_io/basic_istream/tellg/char/8348.cc: New.
1102         * 27_io/basic_istream/tellg/char/fstream.cc: New.
1103         * 27_io/basic_istream/tellg/char/sstream.cc: New.
1104         * 27_io/basic_istream/ws/char/1.cc: New.
1105         * 27_io/basic_istringstream/1.cc: New.
1106         * 27_io/basic_istringstream/2.cc: New.
1107         * 27_io/basic_istringstream/3.cc: New.
1108         * 27_io/basic_istringstream/4.cc: New.
1109         * 27_io/basic_istringstream/rdbuf/char/2832.cc: New.
1110         * 27_io/basic_istringstream/str/char/1.cc: New.
1111         * 27_io/basic_ofstream/1.cc: New.
1112         * 27_io/basic_ofstream/2.cc: New.
1113         * 27_io/basic_ofstream/3.cc: New.
1114         * 27_io/basic_ofstream/4.cc: New.
1115         * 27_io/basic_ofstream/cons/char/2.cc: New.
1116         * 27_io/basic_ofstream/open/char/1.cc: New.
1117         * 27_io/basic_ofstream/rdbuf/char/2832.cc: New.
1118         * 27_io/basic_ostream/1.cc: New.
1119         * 27_io/basic_ostream/2.cc: New.
1120         * 27_io/basic_ostream/3.cc: New.
1121         * 27_io/basic_ostream/4.cc: New.
1122         * 27_io/basic_ostream/cons/char/9827.cc: New.
1123         * 27_io/basic_ostream/endl/char/1.cc: New.
1124         * 27_io/basic_ostream/ends/char/1.cc: New.
1125         * 27_io/basic_ostream/ends/char/2.cc: New.
1126         * 27_io/basic_ostream/exceptions/char/9561.cc: New.
1127         * 27_io/basic_ostream/flush/char/1.cc: New.
1128         * 27_io/basic_ostream/inserters_arithmetic/char/1.cc: New.
1129         * 27_io/basic_ostream/inserters_arithmetic/char/2.cc: New.
1130         * 27_io/basic_ostream/inserters_arithmetic/char/3.cc: New.
1131         * 27_io/basic_ostream/inserters_arithmetic/char/4.cc: New.
1132         * 27_io/basic_ostream/inserters_arithmetic/char/4402.cc: New.
1133         * 27_io/basic_ostream/inserters_arithmetic/char/5.cc: New.
1134         * 27_io/basic_ostream/inserters_arithmetic/char/6.cc: New.
1135         * 27_io/basic_ostream/inserters_arithmetic/wchar_t/1.cc: New.
1136         * 27_io/basic_ostream/inserters_character/char/1.cc: New.
1137         * 27_io/basic_ostream/inserters_character/char/2.cc: New.
1138         * 27_io/basic_ostream/inserters_character/char/3.cc: New.
1139         * 27_io/basic_ostream/inserters_character/char/4.cc: New.
1140         * 27_io/basic_ostream/inserters_character/char/5.cc: New.
1141         * 27_io/basic_ostream/inserters_character/char/6.cc: New.
1142         * 27_io/basic_ostream/inserters_character/char/8.cc: New.
1143         * 27_io/basic_ostream/inserters_character/wchar_t/7.cc: New.
1144         * 27_io/basic_ostream/inserters_character/wchar_t/8.cc: New.
1145         * 27_io/basic_ostream/inserters_other/char/1.cc: New.
1146         * 27_io/basic_ostream/inserters_other/char/2.cc: New.
1147         * 27_io/basic_ostream/inserters_other/char/3.cc: New.
1148         * 27_io/basic_ostream/inserters_other/char/4.cc: New.
1149         * 27_io/basic_ostream/inserters_other/char/9318-out.cc: New.
1150         * 27_io/basic_ostream/inserters_other/char/9424-out.cc: New.
1151         * 27_io/basic_ostream/sentry/char/1.cc: New.
1152         * 27_io/basic_ostream/sentry/char/2.cc: New.
1153         * 27_io/basic_ostream/sentry/char/3983-fstream.cc: New.
1154         * 27_io/basic_ostream/sentry/char/3983-sstream.cc: New.
1155         * 27_io/basic_ostream/tellp/char/1.cc: New.
1156         * 27_io/basic_ostream/tellp/char/2.cc: New.
1157         * 27_io/basic_ostringstream/1.cc: New.
1158         * 27_io/basic_ostringstream/2.cc: New.
1159         * 27_io/basic_ostringstream/3.cc: New.
1160         * 27_io/basic_ostringstream/4.cc: New.
1161         * 27_io/basic_ostringstream/cons/char/3.cc: New.
1162         * 27_io/basic_ostringstream/rdbuf/char/2832.cc: New.
1163         * 27_io/basic_ostringstream/str/char/1.cc: New.
1164         * 27_io/basic_ostringstream/str/char/2.cc: New.
1165         * 27_io/basic_streambuf/1.cc: New.
1166         * 27_io/basic_streambuf/2.cc: New.
1167         * 27_io/basic_streambuf/3.cc: New.
1168         * 27_io/basic_streambuf/cons/char/1.cc: New.
1169         * 27_io/basic_streambuf/imbue/char/1.cc: New.
1170         * 27_io/basic_streambuf/imbue/char/9322.cc: New.
1171         * 27_io/basic_streambuf/overflow/char/1.cc: New.
1172         * 27_io/basic_streambuf/overflow/char/2.cc: New.
1173         * 27_io/basic_streambuf/overflow/char/3599.cc: New.
1174         * 27_io/basic_streambuf/sgetc/char/1.cc: New.
1175         * 27_io/basic_streambuf/sgetn/char/1.cc: New.
1176         * 27_io/basic_streambuf/sputbackc/char/9538.cc: New.
1177         * 27_io/basic_streambuf/sputc/char/1057.cc: New.
1178         * 27_io/basic_streambuf/sputn/char/1.cc: New.
1179         * 27_io/basic_streambuf/sputn/char/1057.cc: New.
1180         * 27_io/basic_streambuf/sync/char/1057.cc: New.
1181         * 27_io/basic_stringbuf/1.cc: New.
1182         * 27_io/basic_stringbuf/2.cc: New.
1183         * 27_io/basic_stringbuf/3.cc: New.
1184         * 27_io/basic_stringbuf/4.cc: New.
1185         * 27_io/basic_stringbuf/5.cc: New.
1186         * 27_io/basic_stringbuf/imbue/char/1.cc: New.
1187         * 27_io/basic_stringbuf/imbue/char/9322.cc: New.
1188         * 27_io/basic_stringbuf/in_avail/char/1.cc: New.
1189         * 27_io/basic_stringbuf/overflow/char/2.cc: New.
1190         * 27_io/basic_stringbuf/overflow/char/3599.cc: New.
1191         * 27_io/basic_stringbuf/overflow/char/9988.cc: New.
1192         * 27_io/basic_stringbuf/sbumpc/char/1.cc: New.
1193         * 27_io/basic_stringbuf/sbumpc/char/9825.cc: New.
1194         * 27_io/basic_stringbuf/seekoff/char/1.cc: New.
1195         * 27_io/basic_stringbuf/seekoff/char/2.cc: New.
1196         * 27_io/basic_stringbuf/seekpos/char/1.cc: New.
1197         * 27_io/basic_stringbuf/seekpos/char/2.cc: New.
1198         * 27_io/basic_stringbuf/setbuf/char/1.cc: New.
1199         * 27_io/basic_stringbuf/setbuf/char/2.cc: New.
1200         * 27_io/basic_stringbuf/setbuf/char/3.cc: New.
1201         * 27_io/basic_stringbuf/sgetc/char/1.cc: New.
1202         * 27_io/basic_stringbuf/sgetn/char/1.cc: New.
1203         * 27_io/basic_stringbuf/snextc/char/1.cc: New.
1204         * 27_io/basic_stringbuf/sputbackc/char/1.cc: New.
1205         * 27_io/basic_stringbuf/sputbackc/char/9425.cc: New.
1206         * 27_io/basic_stringbuf/sputc/char/1.cc: New.
1207         * 27_io/basic_stringbuf/sputc/char/1057.cc: New.
1208         * 27_io/basic_stringbuf/sputc/char/9404-1.cc: New.
1209         * 27_io/basic_stringbuf/sputn/char/1.cc: New.
1210         * 27_io/basic_stringbuf/sputn/char/1057.cc: New.
1211         * 27_io/basic_stringbuf/sputn/char/9404-2.cc: New.
1212         * 27_io/basic_stringbuf/str/char/1.cc: New.
1213         * 27_io/basic_stringbuf/str/char/2.cc: New.
1214         * 27_io/basic_stringbuf/str/char/3.cc: New.
1215         * 27_io/basic_stringbuf/str/char/3955.cc: New.
1216         * 27_io/basic_stringbuf/sungetc/char/1.cc: New.
1217         * 27_io/basic_stringbuf/sync/char/1057.cc: New.
1218         * 27_io/basic_stringstream/1.cc: New.
1219         * 27_io/basic_stringstream/2.cc: New.
1220         * 27_io/basic_stringstream/3.cc: New.
1221         * 27_io/basic_stringstream/4.cc: New.
1222         * 27_io/basic_stringstream/rdbuf/char/2832.cc: New.
1223         * 27_io/basic_stringstream/str/char/1.cc: New.
1224         * 27_io/basic_stringstream/str/char/2.cc: New.
1225         * 27_io/basic_stringstream/str/char/3.cc: New.
1226         * 27_io/basic_stringstream/str/char/4.cc: New.
1227         * 27_io/fpos/1.cc: New.
1228         * 27_io/fpos/2.cc: New.
1229         * 27_io/fpos/3.cc: New.
1230         * 27_io/ios_base/callbacks/1.cc: New.
1231         * 27_io/ios_base/state/1.cc: New.
1232         * 27_io/ios_base/storage/1.cc: New.
1233         * 27_io/ios_base/storage/2.cc: New.
1234         * 27_io/ios_base/storage/3.cc: New.
1235         * 27_io/ios_base/sync_with_stdio/1.cc: New.
1236         * 27_io/ios_base/sync_with_stdio/2.cc: New.
1237         * 27_io/manipulators/adjustfield/char/1.cc: New.
1238         * 27_io/manipulators/adjustfield/char/2.cc: New.
1239         * 27_io/manipulators/basefield/char/1.cc: New.
1240         * 27_io/manipulators/standard/char/1.cc: New.
1241         * 27_io/manipulators/standard/char/2.cc: New.
1242         * 27_io/objects/char/1.cc: New.
1243         * 27_io/objects/char/2.cc: New.
1244         * 27_io/objects/char/2523-1_xin.cc: New.
1245         * 27_io/objects/char/2523-1_xin.in: New.
1246         * 27_io/objects/char/2523-2_xin.cc: New.
1247         * 27_io/objects/char/2523-2_xin.in: New.
1248         * 27_io/objects/char/3045.cc: New.
1249         * 27_io/objects/char/3647.cc: New.
1250         * 27_io/objects/char/3_xin.cc: New.
1251         * 27_io/objects/char/3_xin.in: New.
1252         * 27_io/objects/char/4_xin.cc: New.
1253         * 27_io/objects/char/4_xin.in: New.
1254         * 27_io/objects/char/5268.cc: New.
1255         * 27_io/objects/char/5280_xin.cc: New.
1256         * 27_io/objects/char/5280_xin.in: New.
1257         * 27_io/objects/char/6548_xin.cc: New.
1258         * 27_io/objects/char/6548_xin.in: New.
1259         * 27_io/objects/char/6648-1_xin.cc: New.
1260         * 27_io/objects/char/6648-1_xin.in: New.
1261         * 27_io/objects/char/6648-2_xin.cc: New.
1262         * 27_io/objects/char/6648-2_xin.in: New.
1263         * 27_io/objects/char/7744_xin.cc: New.
1264         * 27_io/objects/char/7744_xin.in: New.
1265         * 27_io/objects/wchar_t/1.cc: New.
1266         * 27_io/types/1.cc: New.
1267         * 27_io/types/2.cc: New.
1268         * data/filebuf_members-1.tst: New.
1269         * data/filebuf_members-1.txt: New.
1270         * data/filebuf_virtuals-1.tst: New.
1271         * data/filebuf_virtuals-1.txt: New.
1272         * data/filebuf_virtuals-2.tst: New.
1273         * data/filebuf_virtuals-3.tst: New.
1274         * data/ifstream_members-1.tst: New.
1275         * data/ifstream_members-1.txt: New.
1276         * data/ios_base_members_static-1.tst: New.
1277         * data/istream_extractor_other-1.tst: New.
1278         * data/istream_extractor_other-1.txt: New.
1279         * data/istream_extractor_other-2.tst: New.
1280         * data/istream_seeks-1.tst: New.
1281         * data/istream_seeks-1.txt: New.
1282         * data/istream_seeks-2.tst: New.
1283         * data/istream_seeks-3.tst: New.
1284         * data/istream_unformatted-1.tst: New.
1285         * data/istream_unformatted-1.txt: New.
1286         * data/ofstream_members-1.tst: New.
1287         * data/ostream_inserter_char-1.tst: New.
1288         * data/ostream_inserter_char-1.txt: New.
1289         * data/ostream_inserter_other-1.tst: New.
1290         * data/ostream_inserter_other-2.tst: New.
1291         * data/ostream_seeks-1.tst: New.
1292
1293 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
1294
1295         * include/bits/sstream.tcc (basic_stringbuf::seekpos): Remove
1296         requirement that __mode must be strict input or output.
1297
1298         * include/std/std_streambuf.h (basic_streambuf::setp): Set
1299         _M_out_lim.
1300         
1301         * include/std/std_sstream.h (basic_strinbuf::str): Zero length
1302         output string shouldn't core.
1303         (basic_stringbuf::_M_really_sync): Add base argument. Remove rturn
1304         type.
1305         * include/bits/sstream.tcc: Adjust _M_really_sync bits here.
1306         
1307         * include/bits/istream.tcc (basic_istream::putback): Set gcount to
1308         zero.
1309
1310 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
1311
1312         * testsuite/data: New directory.
1313         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Modify
1314         to copy files from the testsuite data directory.        
1315         (libstdc++-v3-list-sourcefiles): Add another test list filter, for
1316         testfiles containing _xin, which now means this is an interactive
1317         test and should be run with the interactive dejagnu hooks.
1318         * testsuite/Makefile.am: Remove testsuite_* files.
1319         * testsuite/Makefile.in: Regenerate.
1320         
1321 2003-04-09  Zack Weinberg  <zack@codesourcery.com>
1322
1323         * docs/html/install.html: Document complete list of locales
1324         required by test suite.  Document procedure for installing
1325         said locales under Debian.  Solicit instructions for other
1326         operating systems.
1327
1328 2003-04-08  Alexandre Oliva  <aoliva@redhat.com>
1329
1330         * include/bits/sstream.tcc (overflow): Make sure operands of min
1331         and max have the same type.
1332
1333 2003-04-04  Jerry Quinn  <jlquinn@optonline.net>
1334
1335         PR libstdc++/10276
1336         * src/ios.cc (ios_base::_M_init): Remove _M_callbacks
1337         initialization.
1338
1339 2003-03-31  Paolo Carlini  <pcarlini@unitus.it>
1340
1341         * include/std/std_streambuf.h (_M_out_buf_size()): Remove.
1342         * include/bits/fstream.tcc (_M_allocate_internal_buffer):
1343         Don't set _M_out_end.
1344         (basic_filebuf::overflow): Replace _M_out_buf_size() with
1345         this->_M_out_cur && this->_M_out_cur < this->_M_out_end.
1346         * include/bits/sstream.tcc (basic_stringbuf::overflow):
1347         Replace _M_out_buf_size() with this->_M_out_cur < this->_M_out_end;
1348         * include/bits/streambuf.tcc (basic_streambuf::sputc):
1349         Replace _M_out_buf_size() with _M_out_cur && _M_out_cur < _M_out_end.
1350         (basic_streambuf::xsputn): Replace _M_out_buf_size() with
1351         _M_out_end - _M_out_cur.
1352         (__copy_streambufs): Likewise.
1353         * include/std/std_fstream.h (_M_set_determinate): Set
1354         _M_out_end here.
1355
1356 2003-03-30  Paolo Carlini  <pcarlini@unitus.it>
1357
1358         * include/bits/fstream.tcc (basic_filebuf::showmanyc,
1359         _M_convert_to_external, _M_really_overflow, seekoff): Fix
1360         test for synced buffer.
1361         * include/std/std_fstream.h (sync): Likewise.
1362         * src/fstream.cc (basic_filebuf<char>::_M_underflow_common,
1363         basic_filebuf<wchar_t>::_M_underflow_common): Likewise.
1364
1365 2003-03-28  Benjamin Kosnik  <bkoz@redhat.com>
1366
1367         * include/std/std_sstream.h (basic_istringstream): Adjust
1368         initialization.
1369         (basic_ostringstream): Same.
1370         (basic_stringstream): Same.
1371         * include/std/std_fstream.h (basic_ifstream): Adjust initialization.
1372         (basic_ofstream): Same.
1373         (basic_fstream): Same.
1374         * include/std/std_ostream.h (basic_ostrem): Add protected ctor
1375         that does not call init.
1376         * include/std/std_istream.h (basic_istream): Same.
1377         (basic_iostream): Construct istream, ostream uninitialized, use
1378         init to initialize just once. Add protected ctor that does not
1379         call init.
1380
1381 2003-03-28  Paolo Carlini  <pcarlini@unitus.it>
1382             Nathan Myers  <ncm@cantrip.org>
1383
1384         PR libstdc++/9533
1385         * include/bits/fstream.tcc (basic_filebuf<>::open): Don't
1386         call underflow().
1387         (basic_filebuf<>::showmanyc): Use the information provided
1388         by codecvt and __basic_file<>::showmanyc_helper to implement
1389         a non-trivial showmanyc.
1390         * config/io/basic_file_stdio.h
1391         (__basic_file<>::showmanyc_helper): New, declare.
1392         * config/io/basic_file_stdio.cc
1393         (__basic_file<>::showmanyc_helper): Define.
1394         (__basic_file<>::_M_open_mode): Don't set O_NONBLOCK.
1395         (__basic_file<char>::open): Don't call fcntl().
1396         * acinclude.m4 (GLIBCPP_CHECK_S_ISREG_OR_S_IFREG,
1397         GLIBCPP_CHECK_POLL): New macros.
1398         * configure.in: Call here.
1399         * acconfig.h: Add #undefs for the corresponding symbols.
1400         * aclocal.m4: Regenerate.
1401         * configure: Regenerate.
1402         * config.h.in: Regenerate.
1403
1404 2003-03-24  Benjamin Kosnik  <bkoz@redhat.com>
1405
1406         * config/linker-map.gnu: Remove string export restrictions.
1407
1408 2003-03-24  Paolo Carlini  <pcarlini@unitus.it>
1409
1410         * testsuite/21_strings/basic_string/find/char/1.cc: Remove
1411         find_first_of, find_last_of and find_last_not_of tests.
1412         * testsuite/21_strings/basic_string/find/char/2.cc: find_first_of
1413         tests here, new file.
1414         * testsuite/21_strings/basic_string/find/wchar_t/1.cc: Likewise,
1415         remove wchar_t find_first_of, find_last_of and find_last_not_of tests.
1416         * testsuite/21_strings/basic_string/find/wchar_t/2.cc: Likewise,
1417         wchar_t find_first_of tests here, new file.
1418         * testsuite/21_strings/basic_string/rfind/char/2.cc: find_last_of
1419         tests here.
1420         * testsuite/21_strings/basic_string/rfind/char/3.cc: find_last_not_of
1421         tests here.
1422         * testsuite/21_strings/basic_string/rfind/wchar_t/2.cc: likewise,
1423         wchar_t find_last_of tests here.
1424         * testsuite/21_strings/basic_string/rfind/wchar_t/3.cc: likewise,
1425         wchar_t find_last_not_of tests here.
1426
1427 2003-03-22  Loren J. Rittle  <ljrittle@acm.org>
1428
1429         * config/os/hpux/ctype_noninline.h (ctype<char>::classic_table):
1430         Correct return value.
1431
1432 2003-03-21  Jerry Quinn  <jlquinn@optonline.net>
1433
1434         PR libstdc++/5730
1435         * include/bits/c++config (_GLIBCPP_FAST_MATH): Define.
1436         * include/std/std_complex.h (norm):  Use faster,
1437         less accurate computation for builtin float types under --fast-math.
1438
1439 2003-03-21  Magnus Fromreide  <gnats@magfr.user.lysator.liu.se>
1440
1441         * testsuite/testsuite_hooks.h: Fix warning nits.
1442
1443 2003-03-19  Alexandre Oliva  <aoliva@redhat.com>
1444
1445         * config/cpu/mips/atomicity.h (__exchange_and_add, __atomic_add):
1446         Only .set mips2 for the o32 ABI.
1447
1448 2003-03-19  Paolo Carlini  <pcarlini@unitus.it>
1449
1450         * testsuite/21_strings/char_traits/requirements/char/1.cc:
1451         Test char not wchar_t.
1452
1453 2003-03-18  Paolo Carlini  <pcarlini@unitus.it>
1454
1455         * testsuite/21_strings/basic_string/append/wchar_t/1.cc:
1456         Correct size, taking into account sizeof(wchar_t).
1457
1458 2003-03-18  Paolo Carlini  <pcarlini@unitus.it>
1459
1460         Reshuffle 21_strings testsuite.
1461         * testsuite/21_strings/append.cc, c_strings.cc, invariants.cc,
1462         assign.cc, ctor_copy_dtor.cc, nonmember.cc, capacity.cc,
1463         element_access.cc, operations.cc, char_traits_requirements.cc,
1464         find.cc, replace.cc, char_traits_typedefs.cc, insert.cc, rfind.cc,
1465         compare.cc, inserters_extractors.cc, substr.cc: Split up, add
1466         wchar_t tests as follows.
1467         * 21_strings/basic_string/append/char/1.cc: New.
1468         * 21_strings/basic_string/append/wchar_t/1.cc: New.
1469         * 21_strings/basic_string/assign/char/1.cc: New.
1470         * 21_strings/basic_string/assign/char/2.cc: New.
1471         * 21_strings/basic_string/assign/char/3.cc: New.
1472         * 21_strings/basic_string/assign/wchar_t/1.cc: New.
1473         * 21_strings/basic_string/assign/wchar_t/2.cc: New.
1474         * 21_strings/basic_string/assign/wchar_t/3.cc: New.
1475         * 21_strings/basic_string/capacity/1.cc: New.
1476         * 21_strings/basic_string/capacity/char/1.cc: New.
1477         * 21_strings/basic_string/capacity/char/2.cc: New.
1478         * 21_strings/basic_string/capacity/wchar_t/1.cc: New.
1479         * 21_strings/basic_string/capacity/wchar_t/2.cc: New.
1480         * 21_strings/basic_string/compare/char/1.cc: New.
1481         * 21_strings/basic_string/compare/wchar_t/1.cc: New.
1482         * 21_strings/basic_string/cons/char/1.cc: New.
1483         * 21_strings/basic_string/cons/char/2.cc: New.
1484         * 21_strings/basic_string/cons/char/3.cc: New.
1485         * 21_strings/basic_string/cons/char/4.cc: New.
1486         * 21_strings/basic_string/cons/char/5.cc: New.
1487         * 21_strings/basic_string/cons/wchar_t/1.cc: New.
1488         * 21_strings/basic_string/cons/wchar_t/2.cc: New.
1489         * 21_strings/basic_string/cons/wchar_t/3.cc: New.
1490         * 21_strings/basic_string/cons/wchar_t/4.cc: New.
1491         * 21_strings/basic_string/cons/wchar_t/5.cc: New.
1492         * 21_strings/basic_string/element_access/char/1.cc: New.
1493         * 21_strings/basic_string/element_access/char/2.cc: New.
1494         * 21_strings/basic_string/element_access/char/3.cc: New.
1495         * 21_strings/basic_string/element_access/wchar_t/1.cc: New.
1496         * 21_strings/basic_string/element_access/wchar_t/2.cc: New.
1497         * 21_strings/basic_string/element_access/wchar_t/3.cc: New.
1498         * 21_strings/basic_string/find/char/1.cc: New.
1499         * 21_strings/basic_string/find/wchar_t/1.cc: New.
1500         * 21_strings/basic_string/insert/char/1.cc: New.
1501         * 21_strings/basic_string/insert/char/2.cc: New.
1502         * 21_strings/basic_string/insert/wchar_t/1.cc: New.
1503         * 21_strings/basic_string/insert/wchar_t/2.cc: New.
1504         * 21_strings/basic_string/inserters_extractors/char/1.cc: New.
1505         * 21_strings/basic_string/inserters_extractors/char/4.cc: New.
1506         * 21_strings/basic_string/inserters_extractors/char/5.cc: New.
1507         * 21_strings/basic_string/inserters_extractors/char/6.cc: New.
1508         * 21_strings/basic_string/inserters_extractors/char/7.cc: New.
1509         * 21_strings/basic_string/inserters_extractors/char/8.cc: New.
1510         * 21_strings/basic_string/inserters_extractors/char/9.cc: New.
1511         * 21_strings/basic_string/inserters_extractors/wchar_t/1.cc: New.
1512         * 21_strings/basic_string/inserters_extractors/wchar_t/4.cc: New.
1513         * 21_strings/basic_string/inserters_extractors/wchar_t/5.cc: New.
1514         * 21_strings/basic_string/inserters_extractors/wchar_t/6.cc: New.
1515         * 21_strings/basic_string/inserters_extractors/wchar_t/7.cc: New.
1516         * 21_strings/basic_string/inserters_extractors/wchar_t/8.cc: New.
1517         * 21_strings/basic_string/inserters_extractors/wchar_t/9.cc: New.
1518         * 21_strings/basic_string/operators/char/1.cc: New.
1519         * 21_strings/basic_string/operators/char/2.cc: New.
1520         * 21_strings/basic_string/operators/wchar_t/1.cc: New.
1521         * 21_strings/basic_string/operators/wchar_t/2.cc: New.
1522         * 21_strings/basic_string/replace/char/1.cc: New.
1523         * 21_strings/basic_string/replace/char/2.cc: New.
1524         * 21_strings/basic_string/replace/char/3.cc: New.
1525         * 21_strings/basic_string/replace/char/4.cc: New.
1526         * 21_strings/basic_string/replace/char/5.cc: New.
1527         * 21_strings/basic_string/replace/wchar_t/1.cc: New.
1528         * 21_strings/basic_string/replace/wchar_t/2.cc: New.
1529         * 21_strings/basic_string/replace/wchar_t/3.cc: New.
1530         * 21_strings/basic_string/replace/wchar_t/4.cc: New.
1531         * 21_strings/basic_string/replace/wchar_t/5.cc: New.
1532         * 21_strings/basic_string/rfind/char/1.cc: New.
1533         * 21_strings/basic_string/rfind/char/2.cc: New.
1534         * 21_strings/basic_string/rfind/char/3.cc: New.
1535         * 21_strings/basic_string/rfind/wchar_t/1.cc: New.
1536         * 21_strings/basic_string/rfind/wchar_t/2.cc: New.
1537         * 21_strings/basic_string/rfind/wchar_t/3.cc: New.
1538         * 21_strings/basic_string/substr/char/1.cc: New.
1539         * 21_strings/basic_string/substr/wchar_t/1.cc: New.
1540         * 21_strings/c_strings/char/1.cc: New.
1541         * 21_strings/c_strings/char/2.cc: New.
1542         * 21_strings/c_strings/wchar_t/1.cc: New.
1543         * 21_strings/c_strings/wchar_t/2.cc: New.
1544         * 21_strings/char_traits/requirements/char/1.cc: New.
1545         * 21_strings/char_traits/requirements/wchar_t/1.cc: New.
1546         * 21_strings/char_traits/typedefs/char/1.cc: New.
1547
1548 2003-03-17  Paolo Carlini  <pcarlini@unitus.it>
1549             Petur Runolfsson  <peturr02@ru.is>
1550
1551         PR libstdc++/10097
1552         * src/fstream.cc (basic_filebuf<char>::_M_underflow_common,
1553         basic_filebuf<wchar_t>::_M_underflow_common):
1554         if (gptr() < egptr()) return *gptr().
1555         * testsuite/27_io/filebuf_virtuals.cc (test16): Add.
1556
1557         * testsuite/27_io/filebuf_members.cc (test_04): Minor
1558         changes: unlink fifo before making it, fix spelling error.
1559
1560 2003-03-17  Benjamin Kosnik  <bkoz@redhat.com>
1561
1562         * testsuite/Makefile.am (CLEANFILES): Add tmp*.
1563         * testsuite/Makefile.in: Regenerate.
1564         * testsuite/27_io/filebuf_members.cc: Consistently name tmp files.
1565         Cleanups.
1566
1567 2003-03-17  Petur Runolfsson  <peturr02@ru.is>
1568
1569         PR libstdc++/9964
1570         * include/bits/fstream.tcc (basic_filebuf::close):
1571         Always close file, even when write fails.
1572         * testsuite/27_io/filebuf_members.cc (test_07):  New test.
1573
1574 2003-03-17  Danny Smith  <dannysmith@users.sourceforge.net>
1575
1576         * libsupc++/Makefile.am (C_COMPILE): Remove.
1577         (LTCOMPILE): Likewise.
1578         * libsupc++/Makefile.in: Regenerate.
1579
1580 2003-03-14  Benjamin Kosnik  <bkoz@redhat.com>
1581
1582         * testsuite/23_containers/bitset_members.cc: Add test variable.
1583         * testsuite/23_containers/map_insert.cc: Same.
1584         * testsuite/22_locale/ctype/cons/char/1.cc: Same.
1585         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc: Same.
1586         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc: Same.
1587         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc: Same.
1588         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc: Same.
1589         * testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc: Same.
1590         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc: Same.
1591         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc: Same.
1592         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc: Same.
1593         * testsuite/27_io/istream_exception.cc: Same.
1594         * testsuite/27_io/filebuf_virtuals.cc: Same.
1595         * testsuite/27_io/stringbuf_virtuals.cc: Same.
1596         * testsuite/27_io/ostream_inserter_arith.cc: Same.
1597         * testsuite/26_numerics/valarray_operators.cc: Same.
1598         * testsuite/26_numerics/slice.cc: Same.
1599         * testsuite/26_numerics/slice_array_assignment.cc: Same.
1600         * testsuite/24_iterators/istream_iterator.cc: Same.
1601         * mkcheck.in (TESTS_FILE): Use dejagnu-generated file if possible.
1602
1603 2003-03-14  Petur Runolfsson  <peturr02@ru.is>
1604
1605         PR libstdc++/9581
1606         PR libstdc++/9870
1607         * config/locale/generic/ctype_members.cc,
1608         * config/locale/gnu/ctype_members.cc
1609         (ctype<wchar_t>::do_widen(char)):  Cast argument to
1610         unsigned char before passing to btowc.
1611         (ctype<wchar_t>::do_widen(const char*, const char*, wchar_t*)):
1612         Convert characters with btowc instead of mbsrtowcs.
1613         (ctype<wchar_t>::do_narrow(const wchar_t*, const wchar_t*,
1614         char, char*):
1615         Convert characters with wctob instead of wcsrtombs.
1616         * testsuite/22_locale/ctype/narrow/wchar_t/3.cc:  New test.
1617         * testsuite/22_locale/ctype/widen/wchar_t/2.cc:  New test.
1618         * testsuite/22_locale/ctype/widen/wchar_t/3.cc:  New test.
1619
1620 2003-03-14  Benjamin Kosnik  <bkoz@redhat.com>
1621
1622         * include/stdc++.h: New.
1623         * libsupc++/exception_defines.h (__EXCEPTION_DEFINES_H): Add guard.
1624         * include/Makefile.am (stamp-std-precompile): Generate stdc++.h.gch
1625         * include/Makefile.in: Regenerate.
1626         * testsuite_flags.in (--build-cxx): Add, but don't use PCHFLAGS.
1627         (--cxxflags): Put -g -O2 here.
1628         * testsuite/libstdc++-v3.dg/dg.exp: Remove -g -O2 here.
1629
1630 2003-03-14  Loren J. Rittle  <ljrittle@acm.org>
1631
1632         * testsuite/testsuite_hooks.h: Suppress runtime exception thrown by
1633         missing named locale.
1634
1635 2003-03-14  Andreas Schwab  <schwab@suse.de>
1636
1637         * configure.in: Only append to makefiles that are newly created to
1638         avoid multiple multi-do/multi-clean rules.
1639         * configure: Rebuilt.
1640
1641 2003-03-13  Jonathan Wakely  <redi@gcc.gnu.org>
1642
1643         * docs/html/configopts.html, docs/html/documentation.html,
1644         docs/html/explanations.html, docs/html/install.html,
1645         docs/html/19_diagnostics/howto.html, docs/html/faq/index.html: Fix
1646         invalid XHTML and make page header style consistent.
1647
1648 2003-03-12  Jonathan Wakely  <redi@gcc.gnu.org>
1649
1650         * docs/html/faq/index.html: Explain memory "leaks" due to allocators.
1651         * docs/html/faq/index.txt: Regenerate.
1652         * docs/html/debug.html: Add a bit to allocator text and fix XHTML.
1653
1654 2003-03-12  Andreas Schwab  <schwab@suse.de>
1655
1656         * acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Avoid trailing /. in
1657         glibcpp_toolexeclibdir.
1658         * aclocal.m4, configure: Rebuilt.
1659
1660 2003-03-11  Jonathan Wakely  <redi@gcc.gnu.org>
1661
1662         * docs/html/faq/index.html: Update text about location of headers.
1663         * docs/html/faq/index.txt: Regenerate.
1664
1665 2003-03-11  Carlo Wood  <carlo@alinoe.com>
1666
1667         * include/bits/demangle.h: Prepend accessors of
1668         class qualifier with 'get_' in order to fix warnings
1669         when compiling with -Wshadow.
1670
1671 2003-03-11  Loren J. Rittle  <ljrittle@acm.org>
1672
1673         * config/os/bsd/freebsd/ctype_inline.h:  Support _M_table
1674         when so installed.
1675         * testsuite/22_locale/ctype/cons/char/1.cc: Fix typo.
1676
1677         * testsuite/testsuite_hooks.h (run_tests_wrapped_env): Do not
1678         report lack of setenv().
1679
1680 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
1681
1682         * config/io/basic_file_stdio.cc: include <unistd.h>.
1683
1684 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
1685             Nathan Myers  <ncm@cantrip.org>
1686
1687         PR libstdc++/7744
1688         * config/io/basic_file_stdio.h (__basic_file<>::xsgetn, xsputn,
1689         seekoff, seekpos): Add a boolean parameter __stdio.
1690         * config/io/basic_file_stdio.cc (__basic_file<>::xsgetn, xsputn,
1691         seekoff, seekpos): If __stdio == true, use fread (fwrite, fseek/ftell,
1692         fseek/ftell, respectively), otherwise read (write, lseek, lseek,
1693         respectively).
1694         * include/bits/fstream.tcc (basic_filebuf<>::_M_convert_to_external,
1695         _M_really_overflow, seekoff): Use the boolean parameter in the calls.
1696         * include/std/std_fstream.h (sync): Likewise.
1697         * src/fstream.cc (basic_filebuf<>::_M_underflow_common): Likewise.
1698         * src/ios.cc (ios_base::Init::_S_ios_create(bool)): Revert
1699         libstdc++/8399 commit involving isatty(0).
1700         * acinclude.m4 (GLIBCPP_CHECK_UNISTD_DECL_AND_LINKAGE_1): Remove.
1701         (GLIBCPP_CHECK_UNISTD_SUPPORT): Remove
1702         * configure.in: Remove call.
1703         * aclocal.m4: Regenerate.
1704         * config.h.in: Regenerate.
1705         * configure: Regenerate.
1706         * testsuite/27_io/narrow_stream_objects.cc (test11): Add.
1707
1708 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
1709
1710         PR libstdc++/9988
1711         * include/bits/fstream.tcc (overflow): don't write EOF to file.
1712         * testsuite/27_io/filebuf_virtuals.cc (test15): Add.
1713
1714 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
1715
1716         PR libstdc++/9561
1717         * include/bits/basic_ios.h (_M_setstate): New.
1718         * include/bits/ostream.tcc (operator<<): Use it.
1719         * include/bits/istream.tcc (operator>>): Use it.
1720         * include/std/std_ostream.h (operator<<): Make friends.
1721         * include/std/std_istream.h (operator>>): Make friends.
1722         * testsuite/27_io/ostream_exception.cc,
1723         testsuite/27_io/istream_exception.cc: New tests.
1724
1725 2003-03-08  Benjamin Kosnik  <bkoz@redhat.com>
1726
1727         * include/bits/locale_facets.tcc: Fix typo.
1728
1729 2003-03-08  Loren J. Rittle  <ljrittle@acm.org>
1730
1731         * testsuite/26_numerics/c99_classification_macros_c.cc: Tweak test.
1732
1733         * config/locale/generic/c_locale.cc
1734         (locale::facet::_S_create_c_locale): Throw runtime exception when
1735         unsupported language is specified.
1736         * testsuite/testsuite_hooks.h
1737         (run_test_wrapped_generic_locale_exception_catcher): New function.
1738         * testsuite/testsuite_hooks.cc (run_tests_wrapped_locale):
1739         Suppress runtime exception thrown by generic implementation.
1740         (run_tests_wrapped_env): Likewise.
1741         (run_test_wrapped_generic_locale_exception_catcher): New function.
1742         * testsuite/22_locale/collate/compare/char/1.cc: New test wrap.
1743         * testsuite/22_locale/collate/compare/char/2.cc: New test wrap.
1744         * testsuite/22_locale/collate/compare/char/3.cc: New test wrap.
1745         * testsuite/22_locale/collate/hash/char/2.cc: New test wrap.
1746         * testsuite/22_locale/collate/transform/char/2.cc: New test wrap.
1747         * testsuite/22_locale/collate/transform/char/3.cc: New test wrap.
1748         * testsuite/22_locale/collate_byname/1.cc: New test wrap.
1749         * testsuite/22_locale/ctype/is/char/2.cc: New test wrap.
1750         * testsuite/22_locale/facet/2.cc: New test wrap.
1751         * testsuite/22_locale/locale/cons/4.cc: New test wrap.
1752         * testsuite/22_locale/locale/cons/5.cc: New test wrap.
1753         * testsuite/22_locale/locale/cons/7.cc: New test wrap.
1754         * testsuite/22_locale/messages/members/char/1.cc: New test wrap.
1755         * testsuite/22_locale/messages/members/char/2.cc: New test wrap.
1756         * testsuite/22_locale/messages/members/char/3.cc: New test wrap.
1757         * testsuite/22_locale/messages_byname/1.cc: New test wrap.
1758         * testsuite/22_locale/money_get/get/char/1.cc: New test wrap.
1759         * testsuite/22_locale/money_get/get/char/2.cc: New test wrap.
1760         * testsuite/22_locale/money_get/get/char/3.cc: New test wrap.
1761         * testsuite/22_locale/money_get/get/char/4.cc: New test wrap.
1762         * testsuite/22_locale/money_put/put/char/1.cc: New test wrap.
1763         * testsuite/22_locale/money_put/put/char/2.cc: New test wrap.
1764         * testsuite/22_locale/money_put/put/char/3.cc: New test wrap.
1765         * testsuite/22_locale/moneypunct/members/char/2.cc: New test wrap.
1766         * testsuite/22_locale/moneypunct_byname/1.cc: New test wrap.
1767         * testsuite/22_locale/num_get/get/char/1.cc: New test wrap.
1768         * testsuite/22_locale/num_get/get/char/2.cc: New test wrap.
1769         * testsuite/22_locale/num_get/get/char/3.cc: New test wrap.
1770         * testsuite/22_locale/num_get/get/char/5.cc: New test wrap.
1771         * testsuite/22_locale/num_get/get/char/6.cc: New test wrap.
1772         * testsuite/22_locale/num_put/put/char/1.cc: New test wrap.
1773         * testsuite/22_locale/num_put/put/char/2.cc: New test wrap.
1774         * testsuite/22_locale/num_put/put/char/3.cc: New test wrap.
1775         * testsuite/22_locale/num_put/put/char/5.cc: New test wrap.
1776         * testsuite/22_locale/numpunct/members/char/1.cc: New test wrap.
1777         * testsuite/22_locale/numpunct/members/char/2.cc: New test wrap.
1778         * testsuite/22_locale/numpunct_byname/1.cc: New test wrap.
1779         * testsuite/22_locale/numpunct_byname/2.cc: New test wrap.
1780         * testsuite/22_locale/time_get/date_order/char/1.cc: New test wrap.
1781         * testsuite/22_locale/time_get/get_date/char/1.cc: New test wrap.
1782         * testsuite/22_locale/time_get/get_date/char/2.cc: New test wrap.
1783         * testsuite/22_locale/time_get/get_monthname/char/1.cc: New test wrap.
1784         * testsuite/22_locale/time_get/get_monthname/char/2.cc: New test wrap.
1785         * testsuite/22_locale/time_get/get_time/char/1.cc: New test wrap.
1786         * testsuite/22_locale/time_get/get_time/char/2.cc: New test wrap.
1787         * testsuite/22_locale/time_get/get_weekday/char/1.cc: New test wrap.
1788         * testsuite/22_locale/time_get/get_weekday/char/2.cc: New test wrap.
1789         * testsuite/22_locale/time_get/get_year/char/1.cc: New test wrap.
1790         * testsuite/22_locale/time_put/put/char/1.cc: New test wrap.
1791         * testsuite/22_locale/time_put/put/char/2.cc: New test wrap.
1792         * testsuite/22_locale/time_put/put/char/3.cc: New test wrap.
1793         * testsuite/22_locale/time_put/put/char/4.cc: New test wrap.
1794         * testsuite/22_locale/time_put/put/char/5.cc: New test wrap.
1795         * testsuite/22_locale/time_put/put/char/6.cc: New test wrap.
1796         * testsuite/22_locale/time_put/put/char/7.cc: New test wrap.
1797         * testsuite/22_locale/time_put/put/char/8.cc: New test wrap.
1798         * testsuite/27_io/filebuf_virtuals.cc: New test wrap.
1799         * testsuite/27_io/ios_members.cc: New test wrap.
1800         * testsuite/27_io/ostream_inserter_arith.cc (test02): Make void.
1801         New test wrap.
1802         * testsuite/27_io/streambuf_members.cc: New test wrap.
1803         * testsuite/27_io/stringbuf_virtuals.cc: New test wrap.
1804
1805 2003-03-08  Paolo Carlini <pcarlini@unitus.it>
1806             Petur Runolfsson  <peturr02@ru.is>
1807
1808         PR libstdc++/9424
1809         * include/bits/streambuf.tcc (__copy_streambufs): Use
1810         sgetn-sputn only when sputn cannot fail, otherwise fall back
1811         to safe snextc-sputc.
1812         * testsuite/27_io/streambuf_members.cc (test11, test12): Add.
1813
1814 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
1815
1816         * include/bits/locale_facets.tcc (num_put::do_put(bool)): Use
1817         locale cache for truename and falsename.
1818
1819 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
1820
1821         * src/ios.cc (ios_base::ios_base): Correct order of _M_word and
1822         _M_word_size initialization.
1823
1824 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
1825
1826         * include/bits/fstream.tcc (_M_convert_to_external):
1827         Set __elen to zero if codecvt::out eventually fails.
1828
1829 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
1830
1831         PR libstdc++/9182
1832         * include/bits/fstream.tcc (_M_really_overflow): Check
1833         for _M_convert_to_external possible failures.
1834         * include/std/std_fstream.h (sync): Check _M_really_overflow
1835         return value and return -1 in case of failure.
1836         * testsuite/27_io/filebuf_virtuals.cc (test13, test14): Add.
1837
1838 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
1839
1840         PR libstdc++/9826
1841         * include/bits/istream.tcc (operator>>(_CharT*),
1842         operator>>(basic_string&), ws): Pass a char_type to __ctype.is.
1843         * testsuite/27_io/stringstream.cc (test02): Add.
1844
1845         * include/bits/istream.tcc (operator>>(_CharT*)):
1846         Assign a char_type to *__s.
1847
1848 2003-03-07  Petur Runolfsson  <peturr02@ru.is>
1849
1850         PR libstdc++/9817
1851         * include/bits/locale_facets.tcc
1852         (collate::do_compare, collate::do_transform):
1853         Handle nul characters in input.
1854         * testsuite/22_locale/collate/compare/char/3.cc:  New test.
1855         * testsuite/22_locale/collate/compare/wchar_t/3.cc:  New test.
1856         * testsuite/22_locale/collate/transform/char/3.cc:  New test.
1857         * testsuite/22_locale/collate/transform/wchar_t/3.cc:  New test.
1858
1859 2003-03-07  Jerry Quinn  <jlquinn@optonline.net>
1860
1861         * include/bits/streambuf_iterator.h (_M_put): Set _M_failed if
1862         sputn fails.
1863         * testsuite/27_io/ostream_fail.cc: New test.
1864
1865 2003-03-07  Matthias Klose  <doko@debian.org>
1866
1867         * Makefile.am (AM_MAKEFLAGS): Also pass gxx_include_dir.
1868         FLAGS_TO_PASS: Set to AM_MAKEFLAGS
1869         * Makefile.in: Regenerate.
1870         * libsupc++/Makefile.am: Express glibcppinstalldir in terms
1871         of gxx_include_dir.
1872         AM_MAKEFLAGS: Pass gxx_include_dir.
1873         * libsupc++/Makefile.in: Regenerate.
1874
1875 2003-03-06  Jerry Quinn  <jlquinn@optonline.net>
1876
1877         * testsuite/27_io/ios_base_storage.cc (test02): Set exception
1878         mask.  Test setting small-numbered pword and iword slots.  Test
1879         behavior at limit of numeric_limits::max.  Check that values are
1880         still good after failures.
1881
1882 2003-03-06  Jerry Quinn  <jlquinn@optonline.net>
1883
1884         * src/ios.cc (ios_base::_M_init): Remove _M_word_size.
1885         (ios_base::ios_base): Set _M_word, _M_word_size.
1886         (ios_base::~ios_base): Remove redundant test.
1887         * testsuite/27_io/ios_base_storage.cc (test03): New.
1888
1889 2003-03-04  Alexandre Oliva  <aoliva@redhat.com>
1890
1891         * src/strstream.cc, include/bits/basic_string.tcc: Remove
1892         incorrect whitespace added in my previous change.
1893
1894 2003-03-05  Carlo Wood  <carlo@alinoe.com>
1895
1896         * include/bits/ios_base.h(ios_base::Init::_S_initialized()): Added
1897         _S_initialized() in order to allow debugging libraries to detect
1898         when the std streams are initialized from an overloaded operator
1899         new.
1900
1901 2003-03-05  Benjamin Kosnik  <bkoz@redhat.com>
1902
1903         * libsupc++/demangle.h: Move to..
1904         * include/bits/demangle.h: ...here.
1905         * src/demangle.cc: Adjust include.
1906         * include/Makefile.am (bits_headers): Add.
1907         * include/Makefile.in: Regenerate.
1908
1909 2003-03-04  Benjamin Kosnik  <bkoz@redhat.com>
1910
1911         * src/globals.cc: Clarify comments, remove c_locale_imp_compat.
1912
1913         * config/linker-map.gnu: Filter typeinfo and vtable info.
1914
1915 2003-03-04  Jerry Quinn  <jlquinn@optonline.net>
1916
1917         * src/ios.cc (ios_base::_M_grow_words): Don't delete _M_word on
1918         new failure.  Throw exception if badbit and exception mask when ix
1919         >= numeric_limits<int>::max().
1920
1921 2003-03-04  Alexandre Oliva  <aoliva@redhat.com>
1922
1923         * src/strstream.cc (strstreambuf::overflow): Make sure operands of
1924         min and max have the same type.
1925         * include/bits/basic_string.tcc (append, rfind, compare): Likewise.
1926
1927 2003-03-04  Benjamin Kosnik  <bkoz@redhat.com>
1928
1929         * include/Makefile.am (allstamps): Remove stamp-std-precompile.
1930         * include/Makefile.in: Regenerate.
1931
1932 2003-03-03  Benjamin Kosnik  <bkoz@redhat.com>
1933
1934         * testsuite/abi_check.cc (report_symbol_info): Add version info.
1935
1936         * config/linker-map.gnu: Hide more stuff.
1937         * include/Makefile.am: Cleanups.
1938         * include/Makefile.in: Regenerate.
1939
1940 2003-02-27  Jerry Quinn  <jlquinn@optonline.net>
1941
1942         * config/locale/generic/messages_members.h (messages::messages):
1943         Remove name from unused parameter.
1944
1945 2003-02-27  Benjamin Kosnik  <bkoz@redhat.com>
1946
1947         * src/Makefile.am (sources): Add demangle.cc.
1948         (demangle.o): Add.
1949         (demangle.lo): Add.
1950         * src/Makefile.in: Regenerate.
1951         * libsupc++/Makefile.am: Remove old __cxa_demangle bits.
1952         * libsupc++/Makefile.in: Regenerate.
1953
1954         * testsuite/testsuite_hooks.h
1955         (__gnu_cxx_test::verify_demangle): New.
1956         * testsuite/testsuite_hooks.cc: Define.
1957
1958 2003-02-27  Carlo Wood  <carlo@alinoe.com>
1959
1960         * src/demangle.cc: New.
1961         * libsupc++/demangle.h: New.
1962
1963 2003-02-27  Benjamin Kosnik  <bkoz@redhat.com>
1964             Carlo Wood  <carlo@alinoe.com>
1965
1966         * testsuite/demangle/abi_examples/01.cc: New.
1967         * testsuite/demangle/abi_examples/02.cc: New.
1968         * testsuite/demangle/abi_examples/03.cc: New.
1969         * testsuite/demangle/abi_examples/04.cc: New.
1970         * testsuite/demangle/abi_examples/05.cc: New.
1971         * testsuite/demangle/abi_examples/06.cc: New.
1972         * testsuite/demangle/abi_examples/07.cc: New.
1973         * testsuite/demangle/abi_examples/08.cc: New.
1974         * testsuite/demangle/abi_examples/09.cc: New.
1975         * testsuite/demangle/abi_examples/10.cc: New.
1976         * testsuite/demangle/abi_examples/11.cc: New.
1977         * testsuite/demangle/abi_examples/12.cc: New.
1978         * testsuite/demangle/abi_examples/13.cc: New.
1979         * testsuite/demangle/abi_examples/14.cc: New.
1980         * testsuite/demangle/abi_examples/15.cc: New.
1981         * testsuite/demangle/abi_examples/16.cc: New.
1982         * testsuite/demangle/abi_examples/17.cc: New.
1983         * testsuite/demangle/abi_examples/18.cc: New.
1984         * testsuite/demangle/abi_examples/19.cc: New.
1985         * testsuite/demangle/abi_examples/20.cc: New.
1986         * testsuite/demangle/abi_examples/21.cc: New.
1987         * testsuite/demangle/abi_examples/22.cc: New.
1988         * testsuite/demangle/abi_examples/23.cc: New.
1989         * testsuite/demangle/abi_examples/24.cc: New.
1990         * testsuite/demangle/abi_examples/25.cc: New.
1991         * testsuite/demangle/abi_examples/26.cc: New.
1992         * testsuite/demangle/abi_text/01.cc: New.
1993         * testsuite/demangle/abi_text/02.cc: New.
1994         * testsuite/demangle/abi_text/03.cc: New.
1995         * testsuite/demangle/abi_text/04.cc: New.
1996         * testsuite/demangle/abi_text/05.cc: New.
1997         * testsuite/demangle/abi_text/06.cc: New.
1998         * testsuite/demangle/abi_text/07.cc: New.
1999         * testsuite/demangle/abi_text/08.cc: New.
2000         * testsuite/demangle/abi_text/09.cc: New.
2001         * testsuite/demangle/abi_text/10.cc: New.
2002         * testsuite/demangle/abi_text/11.cc: New.
2003         * testsuite/demangle/abi_text/12.cc: New.
2004         * testsuite/demangle/abi_text/13.cc: New.
2005         * testsuite/demangle/abi_text/14.cc: New.
2006         * testsuite/demangle/regression/3111-1.cc: New.
2007         * testsuite/demangle/regression/3111-2.cc: New.
2008         * testsuite/demangle/regression/7986-01.cc: New.
2009         * testsuite/demangle/regression/7986-02.cc: New.
2010         * testsuite/demangle/regression/7986-03.cc: New.
2011         * testsuite/demangle/regression/7986-04.cc: New.
2012         * testsuite/demangle/regression/7986-05.cc: New.
2013         * testsuite/demangle/regression/7986-06.cc: New.
2014         * testsuite/demangle/regression/7986-07.cc: New.
2015         * testsuite/demangle/regression/7986-08.cc: New.
2016         * testsuite/demangle/regression/7986-09.cc: New.
2017         * testsuite/demangle/regression/7986-10.cc: New.
2018         * testsuite/demangle/regression/7986-11.cc: New.
2019         * testsuite/demangle/regression/7986-12.cc: New.
2020         * testsuite/demangle/regression/7986.cc: New.
2021         * testsuite/demangle/regression/8897.cc: New.
2022         * testsuite/demangle/regression/cw-01.cc: New.
2023         * testsuite/demangle/regression/cw-02.cc: New.
2024         * testsuite/demangle/regression/cw-03.cc: New.
2025         * testsuite/demangle/regression/cw-04.cc: New.
2026         * testsuite/demangle/regression/cw-05.cc: New.
2027         * testsuite/demangle/regression/cw-06.cc: New.
2028         * testsuite/demangle/regression/cw-07.cc: New.
2029         * testsuite/demangle/regression/cw-08.cc: New.
2030         * testsuite/demangle/regression/cw-09.cc: New.
2031         * testsuite/demangle/regression/cw-10.cc: New.
2032         * testsuite/demangle/regression/cw-11.cc: New.
2033         * testsuite/demangle/regression/cw-12.cc: New.
2034         * testsuite/demangle/regression/cw-13.cc: New.
2035         * testsuite/demangle/regression/cw-14.cc: New.
2036         * testsuite/demangle/regression/old.cc: New.
2037
2038 2003-02-25  Phil Edwards  <pme@gcc.gnu.org>
2039
2040         * docs/doxygen/Intro.3:  Update with new (proper) names.
2041         * docs/doxygen/TODO:  Update.
2042         * docs/doxygen/run_doxygen:  More comments, fix up man pages.
2043         Fake entries for standard typedefs.
2044         * docs/doxygen/user.cfg.in:  Turn INLINE_INHERITED_MEMB back on.
2045         * docs/html/documentation.html:  Top-level man page is now called
2046         C++Intro.
2047         * include/std/std_limits.h:  Doxygenate.
2048
2049 2003-02-25  Scott Snyder  <snyder@fnal.gov>
2050
2051         PR libstdc++/9811
2052         * include/bits/stl_map.h (lower_bound, upper_bound, equal_range):
2053         Correct documentation.
2054         * include/bits/stl_multimap.h (lower_bound, upper_bound,
2055         equal_range): Likewise.
2056
2057 2003-02-24  Paolo Carlini  <pcarlini@unitus.it>
2058
2059         PR libstdc++/9825
2060         * src/fstream.cc
2061         (basic_filebuf<char/wchar_t>::_M_underflow_common): When
2062         __bump is true (uflow), always increment the read pointer
2063         (_M_in_cur) before returning successfully.
2064         * testsuite/27_io/filebuf_virtuals.cc (test12): Add.
2065
2066 2003-02-24  Paolo Carlini <pcarlini@unitus.it>
2067             Nathan Myers <ncm@cantrip.org>
2068
2069         PR libstdc++/9404, PR libstdc++/9701 (partial)
2070         (aka pptr == epptr implies overflow)
2071         * include/bits/fstream.tcc (_M_allocate_internal_buffer):
2072         Consistently, _M_out_end points to the end of the buffer just
2073         created.
2074         (overflow): Tweak to use _M_out_buf_size().
2075         (_M_convert_to_external): The role of the old _M_out_end is
2076         now played by _M_out_lim.
2077         (_M_really_overflow): Likewise.
2078         (seekoff): Likewise.
2079         (setbuf): _M_out_end points to the end of the external buffer.
2080         * include/bits/sstream.tcc (overflow): Rewrote, taking into
2081         account the resolution of DR 169 (TC).
2082         (seekoff): Use _M_string.capacity(); ios_base::end is now _M_out_lim.
2083         (seekpos): Use _M_string.capacity(); tweak.
2084         * include/bits/streambuf.tcc (sputc, xsputn): Remove comments.
2085         * include/std/std_fstream.h (sync): The role of the old
2086         _M_out_end is now played by _M_out_lim.
2087         (_M_set_indeterminate): Use _M_set_determinate.
2088         (_M_set_determinate): _M_out_end is now _M_out_lim.
2089         (_M_is_indeterminate): Likewise.
2090         * include/std/std_sstream.h (str()): _M_out_end is now _M_out_lim.
2091         (_M_stringbuf_init): Don't set _M_buf_size, unused for sstreams,
2092         which have the information readily available as _M_string.capacity();
2093         for ate and app modes, pass the string size to _M_really_sync.
2094         (_M_really_sync): Consistently set _M_out_end and _M_out_lim, to
2095         point to the end of the buffer (i.e., epptr) and to the string end,
2096         respectively.
2097         * include/std/std_streambuf.h: tweak comments, add _M_out_lim,
2098         which points to the right limit of the used put area.
2099         (_M_out_cur_move): The role of the old _M_out_end is now played
2100         by _M_out_lim.
2101         (_M_out_buf_size): Simplify: now (when _M_out_cur) return simply
2102         _M_out_end  - _M_out_cur (i.e., pptr), _very_ close to the letter
2103         of the standard.
2104         (basic_streambuf()): Initialize _M_out_lim too.
2105         * testsuite/27_io/filebuf_virtuals.cc (test10): Trivial tweak.
2106         * testsuite/27_io/filebuf_virtuals.cc (test11): Add.
2107         * testsuite/27_io/stringbuf_virtuals.cc (test09): Add.
2108
2109 2003-02-24  Benjamin Kosnik  <bkoz@redhat.com>
2110
2111         * testsuite/27_io/ios_base_storage.cc (main): Call
2112         set_memory_limits.
2113
2114 2003-02-21  Jerry Quinn  <jlquinn@optonline.net>
2115
2116         * include/bits/locale_facets.tcc (_M_convert_float): Replace
2117         numpunct facet accesses with data from __locale_cache.
2118
2119 2003-02-20  Phil Edwards  <pme@gcc.gnu.org>
2120
2121         * docs/html/faq/index.html (3.9):  New note, wchar_t on FreeBSD.
2122         * docs/html/faq/index.txt:  Regenerate.
2123
2124 2003-02-20  Phil Edwards  <pme@gcc.gnu.org>
2125
2126         * config/linker-map.gnu:  Also export locking symbols needed for the
2127         generic atomicity.h case.
2128
2129 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
2130
2131         * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
2132         config.status.
2133         * configure: Rebuilt.
2134
2135 2003-02-19  Paolo Carlini  <pcarlini@unitus.it>
2136
2137         * include/bits/sstream.tcc (overflow): According to
2138         27.7.1.3, p5, actual output is performed by sputc(c).
2139
2140 2003-02-19  Phil Edwards  <pme@gcc.gnu.org>
2141
2142         PR libstdc++/9582
2143         * include/bits/stl_alloc.h:  Remove all traces of assert().
2144
2145 2003-02-18  Paolo Carlini  <pcarlini@unitus.it>
2146
2147         * include/std/std_sstream.h (str()): the size of the
2148         current string may be different from the initial one
2149         whenever _M_out_end > _M_out_beg.
2150         * testsuite/27_io/stringbuf_members.cc (test07): Add.
2151
2152 2003-02-18  Paolo Carlini  <pcarlini@unitus.it>
2153
2154         PR libstdc++/9582
2155         * include/bits/stl_alloc.h (__pool_alloc::allocate): Remove assert.
2156
2157 2003-02-17  Benjamin Kosnik  <bkoz@redhat.com>
2158
2159         * include/bits/basic_ios.tcc (copyfmt): Copy locale data as well.
2160         * testsuite/27_io/ios_members.cc (test03): New.
2161
2162 2003-02-17  Jerry Quinn  <jlquinn@optonline.net>
2163
2164         * include/bits/basic_ios.h (basic_ios::_M_cache_locale): Declare.
2165         (basic_ios::_M_cache_facets): Move into above.
2166         * include/bits/basic_ios.tcc (basic_ios::copyfmt): Rebuild locale
2167         cache.
2168         (basic_ios::imbue): Force locale cache to be built.
2169         (basic_ios::_M_init): Create and initialize locale cache.
2170         * include/bits/ios_base.h (__locale_cache_base): Declare.
2171         (ios_base::_M_locale_cache): New.
2172         (ios_base::_M_cache): Define.
2173         * include/bits/locale_facets.h: (__num_base): Fix comment.  Add
2174         _S_end.
2175         (__locale_cache_base,__locale_cache<_CharT>):  New classes.
2176         (__locale_cache<char>, __locale_cache<wchar_t>): New specializations.
2177         * include/bits/locale_facets.tcc (num_put::_M_convert_int): Use locale
2178         cache literal string, grouping flag, thousands separator.
2179         (__locale_cache<_CharT>::__locale_cache): New.
2180         (__locale_cache<_CharT>::_M_init): New.
2181         * src/ios.cc: Clear _M_locale_cache in constructor.
2182         * src/locale-inst.cc (__locale_cache<char>, __locale_cache<_char_t>):
2183         New.
2184
2185 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
2186
2187         * src/locale-inst.cc: Do not include <cassert>.
2188         * src/locale.cc: Likewise.
2189
2190 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
2191
2192         PR libstdc++/9580
2193         * include/std/std_fstream.h: Declare underflow and uflow
2194         specializations, change generic definitions to do nothing.
2195         * src/fstream.cc: Add underflow and uflow specializations.
2196
2197 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
2198
2199         PR libstdc++/9169
2200         * include/bits/fstream.tcc (_M_convert_to_external):
2201         Deal correctly with noconv, as prescribed by 27.8.1.4,p8.
2202         * testsuite/27_io/filebuf_virtuals.cc (test10): Add.
2203
2204 2003-02-13  Benjamin Kosnik  <bkoz@redhat.com>
2205
2206         * include/bits/c++config (_GLIBCPP_EXTERN_TEMPLATE): Define.
2207         * include/bits/basic_ios.tcc: Guard use of extern template.
2208         * include/std/std_iomanip.h: Same.
2209         * include/bits/streambuf.tcc: Same.
2210         * include/bits/stl_alloc.h: Same.
2211         * include/bits/locale_facets.tcc: Same.
2212         * include/bits/ostream.tcc: Same.
2213         * include/bits/istream.tcc: Same.
2214         * include/bits/fstream.tcc: Same.
2215         * include/bits/basic_string.tcc: Same.
2216
2217 2003-02-13  Paolo Carlini  <pcarlini@unitus.it>
2218
2219         * include/bits/ostream.tcc (sentry::sentry): Improve
2220         performance-wise the fix for libstdc++/9563.
2221
2222 2003-02-12  Phil Edwards  <pme@gcc.gnu.org>
2223
2224         * config/cpu/generic/atomicity.h (_Atomic_add_mutex):  Fix declaration.
2225         (_GLIBCPP_NEED_GENERIC_MUTEX):  Define for this file.
2226         (_Atomic_add_mutex_once, __gthread_atomic_add_mutex_once):  Declare
2227         when we don't have static mutex initialization.
2228         (__exchange_and_add):  Use _Atomic_add_mutex_once.
2229         * src/misc-inst.cc:  Definitions of all the above.
2230
2231 2003-02-12  Paolo Carlini  <pcarlini@unitus.it>
2232
2233         PR libstdc++/9563
2234         * include/bits/ostream.tcc (sentry::sentry): Check
2235         the state of the stream after the preparation.
2236         * testsuite/27_io/ostream_sentry.cc (test02): Add.
2237
2238 2003-02-11  Benjamin Kosnik  <bkoz@redhat.com>
2239
2240         * include/Makefile.am (stamp-std-precompile): Add rule.
2241         * include/Makefile.in: Regenerated.
2242
2243 2003-02-11 Jerry Quinn  <jlquinn@optonline.net>
2244            Benjamin Kosnik  <benjamin@redhat.com>
2245
2246         * include/bits/locale_facets.h (__num_base): Add _S_atoms_out.
2247         Add indexes into this array.
2248         (__num_base::_S_atoms): To _S_atoms_in.
2249         (num_put::_M_insert): Rename to _M_pad.
2250         (num_put::_M_convert_int): Adjust remove __mod, __modl arguments.
2251         (num_put::_M_widen_int): Rename to _M_group_int.
2252         (num_put::_M_widen_float): Rename to _M_group_float.
2253         * include/bits/locale_facets.tcc (__int_to_char): New inline
2254         function and adapter functions.
2255         (num_put::_M_group_int): Streamline.
2256         (num_put::_M_group_float): Streamline.
2257         (num_put::_M_convert_int): Remove unused parameter names. Choose
2258         large enough buffer for text.  Use __int_to_char instead of
2259         __convert_from_v.  Formatted text is now at the end of the buffer.
2260         (num_put::_M_convert_float): Preliminary fixups.
2261         * src/locale-inst.cc (__convert_from_v<long long>): Add ifdef.
2262         (__int_to_char<unsigned long long>): Same.
2263         (__int_to_char<char, unsigned long>): New.
2264         (__int_to_char<char, unsigned long long>): New.
2265         (__int_to_char<wchar_t, unsigned long>): New.
2266         (__int_to_char<wchar_t, unsigned long long>): New.
2267
2268 2003-02-11  Scott Snyder  <snyder@fnal.gov>
2269
2270         PR libstdc++/9659
2271         * include/bits/fstream.tcc (seekoff): Avoid operator+
2272         for pos_type.
2273
2274 2003-02-11  Paolo Carlini  <pcarlini@unitus.it>
2275
2276         PR libstdc++/9320
2277         * include/ext/stdio_filebuf.h
2278         (stdio_filebuf(int, std::ios_base::openmode, bool, int_type),
2279         stdio_filebuf(std::__c_file*, std::ios_base::openmode, int_type)):
2280         Change to take a __size parameter of type size_t, not
2281         of type (template parameter dependent) int_type.
2282         * src/ios.cc (ios_base::Init::_S_ios_create): Change type of
2283         size vars to size_t.
2284         * testsuite/ext/stdio_filebuf.cc: Add.
2285
2286 2003-02-11  Paolo Carlini  <pcarlini@unitus.it>
2287             Petur Runolfsson  <peturr02@ru.is>
2288
2289         PR libstdc++/9318
2290         * include/bits/streambuf.tcc (__copy_streambufs):
2291         Don't conditionalize the copy to __testput.
2292         * testsuite/27_io/streambuf_members.cc (test09, test10): Add.
2293
2294 2002-02-11  DJ Delorie  <dj@redhat.com>
2295
2296         * acinclude.m4: Check for native targets that can't link at
2297         this point in the build.
2298         * aclocal.m4: Regenerate.
2299         * configure: Regenerate.
2300
2301 2003-02-08  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2302
2303         * hppa/atomicity.h (__Atomicity_lock<__inst>::_S_atomicity_lock):
2304         Correct alignment.
2305         (__exchange_and_add, __atomic_add): Use PA 2.0 ordered store to reset
2306         lock.
2307
2308 2003-02-07  Paolo Carlini  <pcarlini@unitus.it>
2309
2310         * testsuite/27_io/filebuf_virtuals.cc (test08): Fix for
2311         unsigned char platforms.
2312
2313 2003-02-06  Paolo Carlini  <pcarlini@unitus.it>
2314
2315         PR libstdc++/9562
2316         * include/std/std_istream.h
2317         (basic_istream::sentry::operator bool()): Make const.
2318         * include/std/std_ostream.h
2319         (basic_ostream::sentry::operator bool()): Likewise.
2320         * testsuite/27_io/istream_sentry.cc (test03): Add.
2321         * testsuite/27_io/ostream_sentry.cc: Add.
2322
2323 2003-02-06  Paolo Carlini  <pcarlini@unitus.it>
2324
2325         PR libstdc++/9548
2326         Implement resolution of DR 231 (Ready)
2327         * include/bits/locale_facets.h (__num_base::_S_format_float):
2328         Change declaration: return void, remove __prec parameter.
2329         * src/locale.cc (__num_base::_S_format_float): Implement
2330         resolution of DR 231.
2331         * include/bits/locale_facets.tcc (num_put::_M_convert_float):
2332         Tweak uses. Check for negative precision.
2333         * testsuite/22_locale/num_put/put/char/6.cc: Add
2334         * testsuite/22_locale/num_put/put/wchar_t/6.cc: Likewise.
2335
2336 2003-02-06  Peter Soetens  <peter.soetens@mech.kuleuven.ac.be>
2337
2338         * config/io/basic_file_libio.h: Fixups.
2339         * config/io/c_io_libio.h: Same.
2340         * libio/Makefile.am: Same.
2341         * libio/Makefile.in: Regenerated.
2342
2343 2003-02-06  Benjamin Kosnik  <bkoz@redhat.com>
2344
2345         * testsuite/22_locale/codecvt/encoding/wchar_t/1.cc (test01):
2346         Explicitly use the "C" locale.
2347         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc (test01): Same.
2348
2349 2003-02-06  Petur Runolfsson  <peturr02@ru.is>
2350
2351         DR 75
2352         DR 305
2353         PR libstdc++/9028 (partial)
2354         PR libstdc++/9224
2355         PR libstdc++/9246
2356         PR libstdc++/9247
2357
2358         * src/codecvt.cc
2359         (codecvt<wchar_t, char, mbstate_t>::do_encoding,
2360         codecvt<wchar_t, char, mbstate_t>::do_length,
2361         codecvt<wchar_t, char, mbstate_t>::do_max_length):
2362         Move...
2363         * config/locale/generic/codecvt_members.cc:  ...here.
2364         * config/locale/gnu/codecvt_members.cc:  ...and here.
2365
2366         * config/locale/generic/codecvt_members.cc,
2367         * config/locale/gnu/codecvt_members.cc
2368         (codecvt<wchar_t, char, mbstate_t>::do_encoding
2369         codecvt<wchar_t, char, mbstate_t>::do_in,
2370         codecvt<wchar_t, char, mbstate_t>::do_length,
2371         codecvt<wchar_t, char, mbstate_t>::do_max_length,
2372         codecvt<wchar_t, char, mbstate_t>::do_out):
2373         New implementation that handles stateless encodings,
2374         including UTF-8.
2375
2376         * config/locale/generic/codecvt_members.cc,
2377         * config/locale/gnu/codecvt_members.cc,
2378         * config/locale/ieee_1003.1-2001/codecvt_specializations.h,
2379         * include/bits/codecvt.h,
2380         * src/codecvt.cc
2381         (codecvt::length, codecvt::do_length):
2382         Change type of first argument of length and do_length from
2383         'const state_type&' to 'state_type&' according to DR 75.
2384
2385         * testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc:  Cleanup.
2386         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc:  New test.
2387         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc:  New test.
2388         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc:  New test.
2389         * testsuite/22_locale/codecvt/encoding/wchar_t/1.cc:
2390         Cleanup and check for correct return value from encoding
2391         for "C" locale.
2392         * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc:  New test.
2393         * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc:  New test.
2394         * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc:  New test.
2395         * testsuite/22_locale/codecvt/in/wchar_t/1.cc:  Cleanup.
2396         * testsuite/22_locale/codecvt/in/wchar_t/2.cc:  New test.
2397         * testsuite/22_locale/codecvt/in/wchar_t/3.cc:  New test.
2398         * testsuite/22_locale/codecvt/in/wchar_t/4.cc:  New test.
2399         * testsuite/22_locale/codecvt/in/wchar_t/5.cc:  New test.
2400         * testsuite/22_locale/codecvt/in/wchar_t/6.cc:  New test.
2401         * testsuite/22_locale/codecvt/in/wchar_t/7.cc:  New test.
2402         * testsuite/22_locale/codecvt/in/wchar_t/8.cc:  New test.
2403         * testsuite/22_locale/codecvt/in/wchar_t/9.cc:  New test.
2404         * testsuite/22_locale/codecvt/length/char/1.cc:  Cleanup.
2405         * testsuite/22_locale/codecvt/length/char/2.cc:  New test.
2406         * testsuite/22_locale/codecvt/length/wchar_t/1.cc:  Cleanup.
2407         * testsuite/22_locale/codecvt/length/wchar_t/2.cc:  New test.
2408         * testsuite/22_locale/codecvt/length/wchar_t/3.cc:  New test.
2409         * testsuite/22_locale/codecvt/length/wchar_t/4.cc:  New test.
2410         * testsuite/22_locale/codecvt/length/wchar_t/5.cc:  New test.
2411         * testsuite/22_locale/codecvt/length/wchar_t/6.cc:  New test.
2412         * testsuite/22_locale/codecvt/length/wchar_t/7.cc:  New test.
2413         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc:  Cleanup.
2414         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc:  New test.
2415         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc:  New test.
2416         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc:  New test.
2417         * testsuite/22_locale/codecvt/out/wchar_t/1.cc:  Cleanup.
2418         * testsuite/22_locale/codecvt/out/wchar_t/2.cc:  New test.
2419         * testsuite/22_locale/codecvt/out/wchar_t/3.cc:  New test.
2420         * testsuite/22_locale/codecvt/out/wchar_t/4.cc:  New test.
2421         * testsuite/22_locale/codecvt/out/wchar_t/5.cc:  New test.
2422         * testsuite/22_locale/codecvt/out/wchar_t/6.cc:  New test.
2423         * testsuite/22_locale/codecvt/out/wchar_t/7.cc:  New test.
2424         * testsuite/22_locale/codecvt/unicode/1.cc:  New test.
2425         * testsuite/22_locale/codecvt/unshift/wchar_t/1.cc:  Cleanup.
2426         * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc:  New test.
2427         * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc:  New test.
2428         * testsuite/22_locale/codecvt/unshfit/wchar_t/4.cc:  New test.
2429
2430 2003-02-05  Benjamin Kosnik  <bkoz@redhat.com>
2431
2432         * include/bits/locale_facets.tcc (time_put::do_put): Use __write.
2433         (money_put::do_put): Same.
2434
2435 2003-02-05  Jerry Quinn  <jlquinn@optonline.net>
2436
2437         * include/bits/ios_base.h (ios_base): Document reserved storage.
2438
2439         * include/bits/locale_facets.h: (struct __pad): Comment on
2440         implementation.
2441         (__verify_grouping): Same.
2442         (__add_grouping): Same.
2443         * include/bits/locale_facets.tcc (__verify_grouping): Move
2444         comments to declaration.
2445         (__add_grouping): Same.
2446
2447         * include/bits/locale_facets.tcc:
2448         (__write<_CharT, _OutIter>): New function.
2449         (__write<_CharT>): New function specialization.
2450         (num_put::_M_insert): Remove explicit loop over iterator.  Use
2451         __write.
2452         (num_put::_M_widen_float): Remove __basefield.
2453         (num_put::_M_widen_int): Move __basefield to within grouping block.
2454
2455         * include/bits/streambuf_iterator.h: Include <streambuf>.
2456         (ostreambuf_iterator::_M_put): Add.
2457
2458 2003-02-05  Paolo Carlini  <pcarlini@unitus.it>
2459
2460         * testsuite/26_numerics/valarray_name_lookup.cc: Fix typo.
2461
2462 2003-02-04  Nathan Myers  <ncm@cantrip.org>
2463
2464         * testsuite/25_algorithms/min_max.cc (test02): Add.
2465
2466 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
2467
2468         PR libstdc++/9439, PR libstdc++/9425
2469         * config/io/basic_file_stdio.cc
2470         (__basic_file<char>::seekoff, seekpos): Return -1L if
2471         fseek fails.
2472         * include/bits/fstream.tcc (basic_filebuf::seekoff):
2473         Check _M_file.seekoff return value; always return
2474         pos_type(off_type(-1)) in case of failure.
2475         (basic_filebuf::pbackfail): Check this->seekoff return
2476         value and return traits_type::eof() in case of failure.
2477         * testsuite/27_io/filebuf_virtuals.cc (test09): Add.
2478
2479 2003-02-04  Jerry Quinn  <jlquinn@optonline.net>
2480
2481         * include/std/std_ostream.h (ostream::_M_write): Declare.
2482         * ostream.tcc (ostream::_M_write): Define.
2483         (basic_ostream::write): Use it.
2484         (operator<<(basic_ostream, _CharT)): Ditto.
2485         (operator<<(basic_ostream, char)): Ditto.
2486         (operator<<(basic_ostream, _CharT*)): Ditto.
2487         (operator<<(basic_ostream, char*)): Ditto.
2488         (operator<<(basic_ostream, basic_string)): Ditto.
2489
2490 2003-02-04  Benjamin Kosnik  <bkoz@redhat.com>
2491
2492         * testsuite/26_numerics/valarray_name_lookup.cc: Fix.
2493
2494 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
2495
2496         * docs/html/27_io/howto.html: Link to Dietmar Kuehl's IOStream page,
2497         add HTML comment about updating links if numbering changes.
2498
2499 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
2500
2501         PR libstdc++/9538
2502         * include/bits/streambuf.tcc (sputbackc): Access
2503         this->gptr()[-1] only if _M_in_beg < _M_in_cur.
2504         * testsuite/27_io/filebuf_virtuals.cc (test08): Add.
2505
2506 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
2507
2508         PR libstdc++/9507
2509         * include/bits/fstream.tcc (open): If the 'ate' repositioning
2510         operation fails, calls close _and_ returns a null pointer
2511         to indicate failure (27.8.1.3,4).
2512         * testsuite/27_io/filebuf_members.cc (test_06): Add.
2513
2514 2003-02-04  Petur Runolfsson  <peturr02@ru.is>
2515
2516         * testsuite/27_io/filebuf_members.cc (test_04): Remove exit(0).
2517
2518 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
2519
2520         * docs/html/27_io/howto.html: New section on stdio_filebuf.
2521         * docs/html/ext/howto.html: Move stdio_filebuf notes to 27_io.
2522         * docs/html/documentation.html: Regenerate.
2523
2524 2003-02-04  Joseph S. Myers  <jsm@polyomino.org.uk>
2525
2526         * docs/html/17_intro/porting.texi: Update to GFDL 1.2.
2527         * docs/html/17_intro/porting.html: Regenerate.
2528
2529 2003-02-03  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
2530             Phil Edwards  <pme@gcc.gnu.org>
2531
2532         * include/std/std_bitset.h:  Replace CHAR_BIT with __CHAR_BIT__, use
2533         numeric_limits for bits-per-word values.
2534         (_Base_bitset::_M_do_count, _Base_bitset<1>::_M_do_count):
2535         Use __builtin_popcountl instead.
2536         (_Base_bitset::_M_do_find_first, _Base_bitset::_M_do_find_next,
2537         _Base_bitset<1>::_M_do_find_first, _Base_bitset<1>::_M_do_find_next):
2538         Use __builtin_ctzl instead.
2539         (_S_bit_count, _S_first_one):  Remove.
2540         * config/linker-map.gnu (GLIBCPP_3.4):  Remove std::_S_bit_count.
2541         * src/Makefile.am (sources):  Remove bitset.cc.
2542         * src/bitset.cc:  Delete file.
2543         * src/Makefile.in:  Regenerate.
2544
2545 2003-02-03  Phil Edwards  <pme@gcc.gnu.org>
2546
2547         PR libstdc++/9527, PR libstdc++/8713
2548         * docs/html/install.html:  Mention glibc version requirement.
2549         * docs/html/faq/index.html (3.8):  New note, glibc 2.2.5+ is needed
2550         with 3.2.1+ (formatting bugfixes).
2551         * docs/html/faq/index.txt:  Regenerate.
2552
2553 2003-02-03  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
2554
2555         PR libstdc++/9234
2556         * include/bits/valarray_before.h (_UnBase::operator[]): Apply unary
2557         operator.
2558
2559         * include/bits/valarray_before.h (__not_equal_to): Use != instead
2560         of ==.
2561
2562         * testsuite/26_numerics/valarray_operators.cc: New test.
2563
2564 2003-02-01  Phil Edwards  <pme@gcc.gnu.org>
2565
2566         * docs/html/faq/index.html:  Correct link to libg++ information.
2567         * docs/html/faq/index.txt:  Regenerated.
2568
2569 2003-02-01  Paolo Carlini  <pcarlini@unitus.it>
2570             Benjamin Kosnik  <bkoz@redhat.com>
2571
2572         Const correctness issue:
2573         http://gcc.gnu.org/ml/libstdc++/2003-01/msg00370.html
2574         * include/bits/locale_classes.h
2575         (locale::_Impl::_M_facets): Change type to const facet**.
2576         (locale::_Impl::_M_install_facet): Change declaration to
2577         take const facet*.
2578         (locale::facet::_M_references): Make mutable.
2579         (locale::facet::_M_add_reference): Declare const.
2580         (locale::facet::_M_remove_reference): Likewise.
2581         * include/bits/locale_facets.tcc
2582         (use_facet(const locale&)): Tweak for const facet** _M_facets.
2583         (has_facet(const locale&)): Likewise.
2584         * src/locale.cc
2585         (locale::facet::_M_add_reference): Adjust definition.
2586         (locale::facet::_M_remove_reference): Likewise.
2587         * src/localename.cc
2588         (locale::_Impl::_Impl(const _Impl&, size_t)): Tweak for
2589         const facet** _M_facets.
2590         (locale::_Impl::_Impl(const char*, size_t)): Likewise.
2591         (locale::_Impl::_Impl(facet**, size_t, bool)): Likewise.
2592         (locale::_Impl::_M_install_facet): Adjust definition to take
2593         const facet* and for const facet** _M_facets.
2594         * testsuite/22_locale/locale/cons/8.cc: Add.
2595
2596 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
2597
2598         * include/std/std_limits.h (numeric_limits<float>::has_infinity):
2599         Use __FLT_HAS_INIFINITY__ to initialize.
2600         (numeric_limits<float>::has_quiet_NaN): Likewise.
2601         (numeric_limits<double>::has_infinity): Use __DBL_HAS_INIFINITY__
2602         to initialize.
2603         (numeric_limits<double>::has_quiet_NaN): Likewise.
2604         (numeric_limits<long double>::has_infinity): Use
2605         __LDBL_HAS_INIFINITY__ to initialize.
2606         (numeric_limits<long_double>::has_quiet_NaN): Likewise.
2607
2608 2003-01-28  Nathan Sidwell  <nathan@codesourcery.com>
2609
2610         PR c++/9433
2611         * libsupc++/tinfo.cc (__vmi_class_type_info::__do_dyncast): Cope
2612         with bases which are very ambiguous.
2613
2614 2003-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
2615
2616         * src/Makefile.am (CONFIG_CXXFLAGS): Reverse order of
2617         @EXTRA_CXX_FLAGS@ @SECTION_FLAGS@.
2618         * libsupc++/Makefile.am (CONFIG_CXXFLAGS): Likewise.
2619         * src/Makefile.in: Regenerate.
2620         * libsupc++/Makefile.in: Regenerate.
2621
2622 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
2623
2624         * acinclude.m4 (glibcpp_toolexeclibdir): Instead of
2625         $(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
2626         version_specific_libs is enabled.
2627         * aclocal.m4, configure: Rebuilt.
2628
2629 2003-01-24  Nathan Sidwell  <nathan@codesourcery.com>
2630
2631         * include/bits/valarray_meta.h: Remove, split into ...
2632         * include/bits/valarray_before.h: ... this, and ...
2633         * include/bits/valarray_after.h: ... this.
2634         * include/std/std_valarray.h: Adjust.
2635         * include/Makefile.am (bits_headers): Adjust.
2636         * include/Makefile.in: Regenerate.
2637
2638 2003-01-24  Andreas Schwab  <schwab@suse.de>
2639
2640         * config/linker-map.gnu: Fix for size_t variance.
2641
2642 2003-01-23  Petur Runolfsson  <peturr02@ru.is>
2643
2644         PR libstdc++/9322
2645         * include/std/std_streambuf.h
2646         (basic_streambuf::basic_streambuf,
2647         basic_streambuf::~basic_streambuf,
2648         basic_streambuf::getloc, basic_streambuf::imbue):
2649         Remove _M_buf_locale_init
2650         * include/bits/fstream.tcc (basic_filebuf::imbue):  Likewise
2651         * testsuite/27_io/filebuf_virtuals.cc (test08):  Add.
2652         * testsuite/27_io/streambuf_members.cc (test08):  Add.
2653         * testsuite/27_io/stringbuf_virtuals.cc (test08):  Add.
2654
2655 2003-01-23  Benjamin Kosnik  <bkoz@redhat.com>
2656
2657         Revert include ordering.
2658         * config/locale/generic/c_locale.h: Add include guards.
2659         * config/locale/gnu/c_locale.h: Same.
2660         * include/bits/locale_classes.h: Remove cctype include.
2661         * include/std/std_iosfwd.h: Add c++locale.h, cctype includes.
2662         * include/std/std_fstream.h: Remove streambuf include.
2663         * include/std/std_sstream.h: Remove streambuf include.
2664
2665 2003-01-23  Benjamin Kosnik  <bkoz@redhat.com>
2666
2667         * configure.in (libtool_VERSION): To 6:0:0.
2668         * configure: Regenerated.
2669         * config/linker-map.gnu: Clean.
2670
2671         * src/misc-inst.cc: Remove instantiations.
2672
2673         * include/bits/stl_alloc.h (__malloc_alloc_template):
2674         To __malloc_alloc.
2675         (__default_alloc_template): To __pool_alloc.
2676         * src/stl-inst.cc: Same.
2677         * include/backward/alloc.h: Update.
2678         * testsuite/ext/allocators.cc: Update.
2679
2680         * src/globals.cc (__gnu_cxx): Remove _GLIBCPP_ASM_SYMVER. Should
2681         really try to remove these if possible.
2682         * src/locale.cc (std): Same.
2683
2684         * testsuite/abi_check.cc (check_version): Add.
2685
2686 2003-01-22  Benjamin Kosnik  <bkoz@redhat.com>
2687             Sysoltsev Slawa  <Vyatcheslav.Sysoltsev@intel.com>
2688             Mark Mitchell  <mark@codesourcery.com>
2689
2690         PR libstdc++/9269
2691         * include/std/std_fstream.h (basic_filebuf::uflow): Declare.
2692         (basic_filebuf::underflow): Declare.
2693         Move definitions.
2694
2695 2003-01-22  Benjamin Kosnik  <bkoz@redhat.com>
2696
2697         * include/bits/locale_facets.h: Move non-facet classes requiring
2698         <string> to...
2699         * include/bits/locale_classes.h: New.
2700         * include/bits/Makefile.am (bits_headers_src): Add locale_classes.h.
2701         * include/bits/Makefile.in: Regenerate.
2702
2703         * include/bits/locale_facets.tcc (__convert_from_v): Move to...
2704         * config/locale/gnu/c_locale.h: ...here.
2705         * config/locale/generic/c_locale.h: Same.
2706
2707         * include/bits/locale_facets.tcc: Move declarations to...
2708         * include/bits/locale_facets.h: ...here.
2709         * include/bits/basic_ios.h: Tweak includes accordingly.
2710         * include/std/std_sstream.h: Add streambuf include.
2711         * include/std/std_fstream.h: Ditto.
2712         * include/std/std_locale.h: Add locale_classes.h include.
2713         * include/std/std_iosfwd.h: Tweak.
2714         * src/concept-inst.cc: Add iterator include.
2715
2716         * config/linker-map.gnu: Specify __cxa functions, mark __cxa_dyn_*
2717         bits as unexported in the future.
2718
2719 2003-01-21  Benjamin Kosnik  <bkoz@redhat.com>
2720
2721         Reshuffle 22_locale testsuite.
2722         * 22_locale/(codecvt.cc money_get.cc
2723         codecvt_members_char_char.cc money_get_members_char.cc
2724         codecvt_members_unicode_char.cc money_get_members_wchar_t.cc
2725         codecvt_members_unicode_wchar_t.cc moneypunct_byname.cc
2726         codecvt_members_wchar_t_char.cc moneypunct.cc collate_byname.cc
2727         moneypunct_members_char.cc collate.cc moneypunct_members_wchar_t.cc
2728         collate_members_char.cc money_put.cc collate_members_wchar_t.cc
2729         money_put_members_char.cc ctor_copy_dtor.cc
2730         money_put_members_wchar_t.cc ctype.cc num_get.cc ctype_is_char.cc
2731         num_get_members_char.cc ctype_is_wchar_t.cc num_get_members_wchar_t.cc
2732         ctype_members_char.cc numpunct_byname.cc ctype_members_wchar_t.cc
2733         numpunct.cc ctype_narrow_char.cc numpunct_members_char.cc
2734         ctype_narrow_wchar_t.cc numpunct_members_wchar_t.cc ctype_scan_char.cc
2735         num_put.cc ctype_scan_wchar_t.cc num_put_members_char.cc
2736         ctype_to_char.cc num_put_members_wchar_t.cc ctype_to_wchar_t.cc
2737         operators.cc ctype_widen_char.cc static_members.cc
2738         ctype_widen_wchar_t.cc time_get.cc facet.cc time_get_members_char.cc
2739         global_templates.cc time_get_members_wchar_t.cc, members.cc,
2740         time_put.cc, messages_byname.cc, time_put_members_char.cc,
2741         messages.cc, time_put_members_wchar_t.cc, messages_members_char.cc):
2742         Split up into individual test cases...
2743         * 22_locale/codecvt/1.cc: New.
2744         * 22_locale/codecvt/2.cc: New.
2745         * 22_locale/codecvt/always_noconv/char/1.cc: New.
2746         * 22_locale/codecvt/always_noconv/char/wrapped_env.cc: New.
2747         * 22_locale/codecvt/always_noconv/char/wrapped_locale.cc: New.
2748         * 22_locale/codecvt/always_noconv/wchar_t/1.cc: New.
2749         * 22_locale/codecvt/always_noconv/wchar_t/wrapped_env.cc: New.
2750         * 22_locale/codecvt/always_noconv/wchar_t/wrapped_locale.cc: New.
2751         * 22_locale/codecvt/encoding/char/1.cc: New.
2752         * 22_locale/codecvt/encoding/char/wrapped_env.cc: New.
2753         * 22_locale/codecvt/encoding/char/wrapped_locale.cc: New.
2754         * 22_locale/codecvt/encoding/wchar_t/1.cc: New.
2755         * 22_locale/codecvt/encoding/wchar_t/wrapped_env.cc: New.
2756         * 22_locale/codecvt/encoding/wchar_t/wrapped_locale.cc: New.
2757         * 22_locale/codecvt/in/char/1.cc: New.
2758         * 22_locale/codecvt/in/char/wrapped_env.cc: New.
2759         * 22_locale/codecvt/in/char/wrapped_locale.cc: New.
2760         * 22_locale/codecvt/in/wchar_t/1.cc: New.
2761         * 22_locale/codecvt/in/wchar_t/wrapped_env.cc: New.
2762         * 22_locale/codecvt/in/wchar_t/wrapped_locale.cc: New.
2763         * 22_locale/codecvt/length/char/1.cc: New.
2764         * 22_locale/codecvt/length/char/wrapped_env.cc: New.
2765         * 22_locale/codecvt/length/char/wrapped_locale.cc: New.
2766         * 22_locale/codecvt/length/wchar_t/1.cc: New.
2767         * 22_locale/codecvt/length/wchar_t/wrapped_env.cc: New.
2768         * 22_locale/codecvt/length/wchar_t/wrapped_locale.cc: New.
2769         * 22_locale/codecvt/max_length/char/1.cc: New.
2770         * 22_locale/codecvt/max_length/char/wrapped_env.cc: New.
2771         * 22_locale/codecvt/max_length/char/wrapped_locale.cc: New.
2772         * 22_locale/codecvt/max_length/wchar_t/1.cc: New.
2773         * 22_locale/codecvt/max_length/wchar_t/wrapped_env.cc: New.
2774         * 22_locale/codecvt/max_length/wchar_t/wrapped_locale.cc: New.
2775         * 22_locale/codecvt/out/char/1.cc: New.
2776         * 22_locale/codecvt/out/char/wrapped_env.cc: New.
2777         * 22_locale/codecvt/out/char/wrapped_locale.cc: New.
2778         * 22_locale/codecvt/out/wchar_t/1.cc: New.
2779         * 22_locale/codecvt/out/wchar_t/wrapped_env.cc: New.
2780         * 22_locale/codecvt/out/wchar_t/wrapped_locale.cc: New.
2781         * 22_locale/codecvt/unicode/char.cc: New.
2782         * 22_locale/codecvt/unicode/wchar_t.cc: New.
2783         * 22_locale/codecvt/unshift/char/1.cc: New.
2784         * 22_locale/codecvt/unshift/char/wrapped_env.cc: New.
2785         * 22_locale/codecvt/unshift/char/wrapped_locale.cc: New.
2786         * 22_locale/codecvt/unshift/wchar_t/1.cc: New.
2787         * 22_locale/codecvt/unshift/wchar_t/wrapped_env.cc: New.
2788         * 22_locale/codecvt/unshift/wchar_t/wrapped_locale.cc: New.
2789         * 22_locale/collate/1.cc: New.
2790         * 22_locale/collate/2.cc: New.
2791         * 22_locale/collate/compare/char/1.cc: New.
2792         * 22_locale/collate/compare/char/2.cc: New.
2793         * 22_locale/collate/compare/char/wrapped_env.cc: New.
2794         * 22_locale/collate/compare/char/wrapped_locale.cc: New.
2795         * 22_locale/collate/compare/wchar_t/1.cc: New.
2796         * 22_locale/collate/compare/wchar_t/2.cc: New.
2797         * 22_locale/collate/compare/wchar_t/wrapped_env.cc: New.
2798         * 22_locale/collate/compare/wchar_t/wrapped_locale.cc: New.
2799         * 22_locale/collate/hash/char/1.cc: New.
2800         * 22_locale/collate/hash/char/2.cc: New.
2801         * 22_locale/collate/hash/char/wrapped_env.cc: New.
2802         * 22_locale/collate/hash/char/wrapped_locale.cc: New.
2803         * 22_locale/collate/hash/wchar_t/1.cc: New.
2804         * 22_locale/collate/hash/wchar_t/2.cc: New.
2805         * 22_locale/collate/hash/wchar_t/wrapped_env.cc: New.
2806         * 22_locale/collate/hash/wchar_t/wrapped_locale.cc: New.
2807         * 22_locale/collate/transform/char/2.cc: New.
2808         * 22_locale/collate/transform/char/wrapped_env.cc: New.
2809         * 22_locale/collate/transform/char/wrapped_locale.cc: New.
2810         * 22_locale/collate/transform/wchar_t/2.cc: New.
2811         * 22_locale/collate/transform/wchar_t/wrapped_env.cc: New.
2812         * 22_locale/collate/transform/wchar_t/wrapped_locale.cc: New.
2813         * 22_locale/collate_byname/1.cc: New.
2814         * 22_locale/ctype/1.cc: New.
2815         * 22_locale/ctype/2.cc: New.
2816         * 22_locale/ctype/cons/char/1.cc: New.
2817         * 22_locale/ctype/cons/char/wrapped_env.cc: New.
2818         * 22_locale/ctype/cons/char/wrapped_locale.cc: New.
2819         * 22_locale/ctype/is/char/1.cc: New.
2820         * 22_locale/ctype/is/char/2.cc: New.
2821         * 22_locale/ctype/is/char/3.cc: New.
2822         * 22_locale/ctype/is/char/wrapped_env.cc: New.
2823         * 22_locale/ctype/is/char/wrapped_locale.cc: New.
2824         * 22_locale/ctype/is/wchar_t/1.cc: New.
2825         * 22_locale/ctype/is/wchar_t/2.cc: New.
2826         * 22_locale/ctype/is/wchar_t/wrapped_env.cc: New.
2827         * 22_locale/ctype/is/wchar_t/wrapped_locale.cc: New.
2828         * 22_locale/ctype/narrow/char/1.cc: New.
2829         * 22_locale/ctype/narrow/char/2.cc: New.
2830         * 22_locale/ctype/narrow/char/wrapped_env.cc: New.
2831         * 22_locale/ctype/narrow/char/wrapped_locale.cc: New.
2832         * 22_locale/ctype/narrow/wchar_t/1.cc: New.
2833         * 22_locale/ctype/narrow/wchar_t/2.cc: New.
2834         * 22_locale/ctype/narrow/wchar_t/wrapped_env.cc: New.
2835         * 22_locale/ctype/narrow/wchar_t/wrapped_locale.cc: New.
2836         * 22_locale/ctype/scan/char/1.cc: New.
2837         * 22_locale/ctype/scan/char/wrapped_env.cc: New.
2838         * 22_locale/ctype/scan/char/wrapped_locale.cc: New.
2839         * 22_locale/ctype/scan/wchar_t/1.cc: New.
2840         * 22_locale/ctype/scan/wchar_t/wrapped_env.cc: New.
2841         * 22_locale/ctype/scan/wchar_t/wrapped_locale.cc: New.
2842         * 22_locale/ctype/to/char/1.cc: New.
2843         * 22_locale/ctype/to/char/wrapped_env.cc: New.
2844         * 22_locale/ctype/to/char/wrapped_locale.cc: New.
2845         * 22_locale/ctype/to/wchar_t/1.cc: New.
2846         * 22_locale/ctype/to/wchar_t/wrapped_env.cc: New.
2847         * 22_locale/ctype/to/wchar_t/wrapped_locale.cc: New.
2848         * 22_locale/ctype/widen/char/1.cc: New.
2849         * 22_locale/ctype/widen/char/wrapped_env.cc: New.
2850         * 22_locale/ctype/widen/char/wrapped_locale.cc: New.
2851         * 22_locale/ctype/widen/wchar_t/1.cc: New.
2852         * 22_locale/ctype/widen/wchar_t/wrapped_env.cc: New.
2853         * 22_locale/ctype/widen/wchar_t/wrapped_locale.cc: New.
2854         * 22_locale/facet/1.cc: New.
2855         * 22_locale/facet/2.cc: New.
2856         * 22_locale/global_templates/1.cc: New.
2857         * 22_locale/locale/cons/1.cc: New.
2858         * 22_locale/locale/cons/2.cc: New.
2859         * 22_locale/locale/cons/3.cc: New.
2860         * 22_locale/locale/cons/4.cc: New.
2861         * 22_locale/locale/cons/5.cc: New.
2862         * 22_locale/locale/cons/6.cc: New.
2863         * 22_locale/locale/cons/7.cc: New.
2864         * 22_locale/locale/global_locale_objects/1.cc: New.
2865         * 22_locale/locale/global_locale_objects/2.cc: New.
2866         * 22_locale/locale/global_locale_objects/3.cc: New.
2867         * 22_locale/locale/operations/1.cc: New.
2868         * 22_locale/locale/operations/2.cc: New.
2869         * 22_locale/messages/1.cc: New.
2870         * 22_locale/messages/2.cc: New.
2871         * 22_locale/messages/members/char/1.cc: New.
2872         * 22_locale/messages/members/char/2.cc: New.
2873         * 22_locale/messages/members/char/3.cc: New.
2874         * 22_locale/messages/members/char/wrapped_env.cc: New.
2875         * 22_locale/messages/members/char/wrapped_locale.cc: New.
2876         * 22_locale/messages_byname/1.cc: New.
2877         * 22_locale/money_get/1.cc: New.
2878         * 22_locale/money_get/2.cc: New.
2879         * 22_locale/money_get/get/char/1.cc: New.
2880         * 22_locale/money_get/get/char/2.cc: New.
2881         * 22_locale/money_get/get/char/3.cc: New.
2882         * 22_locale/money_get/get/char/4.cc: New.
2883         * 22_locale/money_get/get/char/5.cc: New.
2884         * 22_locale/money_get/get/char/6.cc: New.
2885         * 22_locale/money_get/get/char/7.cc: New.
2886         * 22_locale/money_get/get/char/8.cc: New.
2887         * 22_locale/money_get/get/char/wrapped_env.cc: New.
2888         * 22_locale/money_get/get/char/wrapped_locale.cc: New.
2889         * 22_locale/money_get/get/wchar_t/1.cc: New.
2890         * 22_locale/money_get/get/wchar_t/2.cc: New.
2891         * 22_locale/money_get/get/wchar_t/3.cc: New.
2892         * 22_locale/money_get/get/wchar_t/4.cc: New.
2893         * 22_locale/money_get/get/wchar_t/5.cc: New.
2894         * 22_locale/money_get/get/wchar_t/6.cc: New.
2895         * 22_locale/money_get/get/wchar_t/7.cc: New.
2896         * 22_locale/money_get/get/wchar_t/8.cc: New.
2897         * 22_locale/money_get/get/wchar_t/wrapped_env.cc: New.
2898         * 22_locale/money_get/get/wchar_t/wrapped_locale.cc: New.
2899         * 22_locale/money_put/1.cc: New.
2900         * 22_locale/money_put/2.cc: New.
2901         * 22_locale/money_put/put/char/1.cc: New.
2902         * 22_locale/money_put/put/char/2.cc: New.
2903         * 22_locale/money_put/put/char/3.cc: New.
2904         * 22_locale/money_put/put/char/4.cc: New.
2905         * 22_locale/money_put/put/char/5.cc: New.
2906         * 22_locale/money_put/put/char/6.cc: New.
2907         * 22_locale/money_put/put/char/wrapped_env.cc: New.
2908         * 22_locale/money_put/put/char/wrapped_locale.cc: New.
2909         * 22_locale/money_put/put/wchar_t/1.cc: New.
2910         * 22_locale/money_put/put/wchar_t/2.cc: New.
2911         * 22_locale/money_put/put/wchar_t/3.cc: New.
2912         * 22_locale/money_put/put/wchar_t/4.cc: New.
2913         * 22_locale/money_put/put/wchar_t/5.cc: New.
2914         * 22_locale/money_put/put/wchar_t/6.cc: New.
2915         * 22_locale/money_put/put/wchar_t/wrapped_env.cc: New.
2916         * 22_locale/money_put/put/wchar_t/wrapped_locale.cc: New.
2917         * 22_locale/moneypunct/1.cc: New.
2918         * 22_locale/moneypunct/2.cc: New.
2919         * 22_locale/moneypunct/3.cc: New.
2920         * 22_locale/moneypunct/members/char/1.cc: New.
2921         * 22_locale/moneypunct/members/char/2.cc: New.
2922         * 22_locale/moneypunct/members/char/wrapped_env.cc: New.
2923         * 22_locale/moneypunct/members/char/wrapped_locale.cc: New.
2924         * 22_locale/moneypunct/members/wchar_t/1.cc: New.
2925         * 22_locale/moneypunct/members/wchar_t/2.cc: New.
2926         * 22_locale/moneypunct/members/wchar_t/wrapped_env.cc: New.
2927         * 22_locale/moneypunct/members/wchar_t/wrapped_locale.cc: New.
2928         * 22_locale/moneypunct_byname/1.cc: New.
2929         * 22_locale/num_get/1.cc: New.
2930         * 22_locale/num_get/2.cc: New.
2931         * 22_locale/num_get/get/char/1.cc: New.
2932         * 22_locale/num_get/get/char/2.cc: New.
2933         * 22_locale/num_get/get/char/3.cc: New.
2934         * 22_locale/num_get/get/char/4.cc: New.
2935         * 22_locale/num_get/get/char/5.cc: New.
2936         * 22_locale/num_get/get/char/6.cc: New.
2937         * 22_locale/num_get/get/char/wrapped_env.cc: New.
2938         * 22_locale/num_get/get/char/wrapped_locale.cc: New.
2939         * 22_locale/num_get/get/wchar_t/1.cc: New.
2940         * 22_locale/num_get/get/wchar_t/2.cc: New.
2941         * 22_locale/num_get/get/wchar_t/3.cc: New.
2942         * 22_locale/num_get/get/wchar_t/4.cc: New.
2943         * 22_locale/num_get/get/wchar_t/5.cc: New.
2944         * 22_locale/num_get/get/wchar_t/6.cc: New.
2945         * 22_locale/num_get/get/wchar_t/wrapped_env.cc: New.
2946         * 22_locale/num_get/get/wchar_t/wrapped_locale.cc: New.
2947         * 22_locale/num_put/1.cc: New.
2948         * 22_locale/num_put/2.cc: New.
2949         * 22_locale/num_put/put/char/1.cc: New.
2950         * 22_locale/num_put/put/char/2.cc: New.
2951         * 22_locale/num_put/put/char/3.cc: New.
2952         * 22_locale/num_put/put/char/4.cc: New.
2953         * 22_locale/num_put/put/char/5.cc: New.
2954         * 22_locale/num_put/put/char/wrapped_env.cc: New.
2955         * 22_locale/num_put/put/char/wrapped_locale.cc: New.
2956         * 22_locale/num_put/put/wchar_t/1.cc: New.
2957         * 22_locale/num_put/put/wchar_t/2.cc: New.
2958         * 22_locale/num_put/put/wchar_t/3.cc: New.
2959         * 22_locale/num_put/put/wchar_t/4.cc: New.
2960         * 22_locale/num_put/put/wchar_t/5.cc: New.
2961         * 22_locale/num_put/put/wchar_t/wrapped_env.cc: New.
2962         * 22_locale/num_put/put/wchar_t/wrapped_locale.cc: New.
2963         * 22_locale/numpunct/1.cc: New.
2964         * 22_locale/numpunct/2.cc: New.
2965         * 22_locale/numpunct/members/char/1.cc: New.
2966         * 22_locale/numpunct/members/char/2.cc: New.
2967         * 22_locale/numpunct/members/char/wrapped_env.cc: New.
2968         * 22_locale/numpunct/members/char/wrapped_locale.cc: New.
2969         * 22_locale/numpunct/members/wchar_t/1.cc: New.
2970         * 22_locale/numpunct/members/wchar_t/2.cc: New.
2971         * 22_locale/numpunct/members/wchar_t/wrapped_env.cc: New.
2972         * 22_locale/numpunct/members/wchar_t/wrapped_locale.cc: New.
2973         * 22_locale/numpunct_byname/1.cc: New.
2974         * 22_locale/numpunct_byname/2.cc: New.
2975         * 22_locale/time_get/1.cc: New.
2976         * 22_locale/time_get/2.cc: New.
2977         * 22_locale/time_get/date_order/char/1.cc: New.
2978         * 22_locale/time_get/date_order/char/wrapped_env.cc: New.
2979         * 22_locale/time_get/date_order/char/wrapped_locale.cc: New.
2980         * 22_locale/time_get/date_order/wchar_t/1.cc: New.
2981         * 22_locale/time_get/date_order/wchar_t/wrapped_env.cc: New.
2982         * 22_locale/time_get/date_order/wchar_t/wrapped_locale.cc: New.
2983         * 22_locale/time_get/get_date/char/1.cc: New.
2984         * 22_locale/time_get/get_date/char/2.cc: New.
2985         * 22_locale/time_get/get_date/char/3.cc: New.
2986         * 22_locale/time_get/get_date/char/wrapped_env.cc: New.
2987         * 22_locale/time_get/get_date/char/wrapped_locale.cc: New.
2988         * 22_locale/time_get/get_date/wchar_t/1.cc: New.
2989         * 22_locale/time_get/get_date/wchar_t/2.cc: New.
2990         * 22_locale/time_get/get_date/wchar_t/3.cc: New.
2991         * 22_locale/time_get/get_date/wchar_t/wrapped_env.cc: New.
2992         * 22_locale/time_get/get_date/wchar_t/wrapped_locale.cc: New.
2993         * 22_locale/time_get/get_monthname/char/1.cc: New.
2994         * 22_locale/time_get/get_monthname/char/2.cc: New.
2995         * 22_locale/time_get/get_monthname/char/3.cc: New.
2996         * 22_locale/time_get/get_monthname/char/wrapped_env.cc: New.
2997         * 22_locale/time_get/get_monthname/char/wrapped_locale.cc: New.
2998         * 22_locale/time_get/get_monthname/wchar_t/1.cc: New.
2999         * 22_locale/time_get/get_monthname/wchar_t/2.cc: New.
3000         * 22_locale/time_get/get_monthname/wchar_t/3.cc: New.
3001         * 22_locale/time_get/get_monthname/wchar_t/wrapped_env.cc: New.
3002         * 22_locale/time_get/get_monthname/wchar_t/wrapped_locale.cc: New.
3003         * 22_locale/time_get/get_time/char/1.cc: New.
3004         * 22_locale/time_get/get_time/char/2.cc: New.
3005         * 22_locale/time_get/get_time/char/3.cc: New.
3006         * 22_locale/time_get/get_time/char/wrapped_env.cc: New.
3007         * 22_locale/time_get/get_time/char/wrapped_locale.cc: New.
3008         * 22_locale/time_get/get_time/wchar_t/1.cc: New.
3009         * 22_locale/time_get/get_time/wchar_t/2.cc: New.
3010         * 22_locale/time_get/get_time/wchar_t/3.cc: New.
3011         * 22_locale/time_get/get_time/wchar_t/wrapped_env.cc: New.
3012         * 22_locale/time_get/get_time/wchar_t/wrapped_locale.cc: New.
3013         * 22_locale/time_get/get_weekday/char/1.cc: New.
3014         * 22_locale/time_get/get_weekday/char/2.cc: New.
3015         * 22_locale/time_get/get_weekday/char/3.cc: New.
3016         * 22_locale/time_get/get_weekday/char/wrapped_env.cc: New.
3017         * 22_locale/time_get/get_weekday/char/wrapped_locale.cc: New.
3018         * 22_locale/time_get/get_weekday/wchar_t/1.cc: New.
3019         * 22_locale/time_get/get_weekday/wchar_t/2.cc: New.
3020         * 22_locale/time_get/get_weekday/wchar_t/3.cc: New.
3021         * 22_locale/time_get/get_weekday/wchar_t/wrapped_env.cc: New.
3022         * 22_locale/time_get/get_weekday/wchar_t/wrapped_locale.cc: New.
3023         * 22_locale/time_get/get_year/char/1.cc: New.
3024         * 22_locale/time_get/get_year/char/3.cc: New.
3025         * 22_locale/time_get/get_year/char/wrapped_env.cc: New.
3026         * 22_locale/time_get/get_year/char/wrapped_locale.cc: New.
3027         * 22_locale/time_get/get_year/wchar_t/1.cc: New.
3028         * 22_locale/time_get/get_year/wchar_t/3.cc: New.
3029         * 22_locale/time_get/get_year/wchar_t/wrapped_env.cc: New.
3030         * 22_locale/time_get/get_year/wchar_t/wrapped_locale.cc: New.
3031         * 22_locale/time_put/1.cc: New.
3032         * 22_locale/time_put/2.cc: New.
3033         * 22_locale/time_put/put/char/1.cc: New.
3034         * 22_locale/time_put/put/char/10.cc: New.
3035         * 22_locale/time_put/put/char/2.cc: New.
3036         * 22_locale/time_put/put/char/3.cc: New.
3037         * 22_locale/time_put/put/char/4.cc: New.
3038         * 22_locale/time_put/put/char/5.cc: New.
3039         * 22_locale/time_put/put/char/6.cc: New.
3040         * 22_locale/time_put/put/char/7.cc: New.
3041         * 22_locale/time_put/put/char/8.cc: New.
3042         * 22_locale/time_put/put/char/9.cc: New.
3043         * 22_locale/time_put/put/char/wrapped_env.cc: New.
3044         * 22_locale/time_put/put/char/wrapped_locale.cc: New.
3045         * 22_locale/time_put/put/wchar_t/1.cc: New.
3046         * 22_locale/time_put/put/wchar_t/10.cc: New.
3047         * 22_locale/time_put/put/wchar_t/2.cc: New.
3048         * 22_locale/time_put/put/wchar_t/3.cc: New.
3049         * 22_locale/time_put/put/wchar_t/4.cc: New.
3050         * 22_locale/time_put/put/wchar_t/5.cc: New.
3051         * 22_locale/time_put/put/wchar_t/6.cc: New.
3052         * 22_locale/time_put/put/wchar_t/7.cc: New.
3053         * 22_locale/time_put/put/wchar_t/8.cc: New.
3054         * 22_locale/time_put/put/wchar_t/9.cc: New.
3055         * 22_locale/time_put/put/wchar_t/wrapped_env.cc: New.
3056         * 22_locale/time_put/put/wchar_t/wrapped_locale.cc: New.
3057
3058 2003-01-16  Jeffrey D. Oldham  <oldham@codesourcery.com>
3059
3060         * config/locale/generic/messages_members.h
3061         (messages_byname<_CharT>::messages_byname): Use this-> to refer to
3062         unqualified members of base clasess.
3063
3064 2003-01-16  Mark Mitchell  <mark@codesourcery.com>
3065             Jeffrey Oldham <oldham@codesourcery.com>
3066
3067         * config/locale/gnu/messages_members.h: Use this-> to refer to
3068         unqualified members of base clasess.
3069         * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Likewise.
3070         * include/bits/codecvt.h: Likewise.
3071         * include/bits/deque.tcc: Likewise.
3072         * include/bits/fstream.tcc: Likewise.
3073         * include/bits/istream.tcc: Likewise.
3074         * include/bits/list.tcc: Likewise.
3075         * include/bits/locale_facets.h: Likewise.
3076         * include/bits/ostream.tcc: Likewise.
3077         * include/bits/sstream.tcc: Likewise.
3078         * include/bits/stl_bvector.h: Likewise.
3079         * include/bits/stl_deque.h: Likewise.
3080         * include/bits/stl_list.h: Likewise.
3081         * include/bits/stl_tree.h: Likewise.
3082         * include/bits/stl_vector.h: Likewise.
3083         * include/bits/vector.tcc: Likewise.
3084         * include/ext/ropeimpl.h: Likewise.
3085         * include/ext/stdio_filebuf.h: Likewise.
3086         * include/ext/stl_rope.h: Likewise.
3087         * include/std/std_fstream.h: Likewise.
3088         * include/std/std_sstream.h: Likewise.
3089
3090 2003-01-15  Phil Edwards  <pme@gcc.gnu.org>
3091
3092         * include/bits/basic_string.tcc (_S_string_copy): Unused, remove.
3093
3094 2003-01-15  Benjamin Kosnik  <bkoz@redhat.com>
3095
3096         * acinclude.m4 (GLIBCPP_CHECK_WCHAR_T_SUPPORT): Substitute
3097         GLIBCPP_TEST_WCHAR_T if building wchar_t bits in the library.
3098         * aclocal.m4: Regenerate.
3099         * configure: Regenerate.
3100         * testsuite/Makefile.am (all-local): Add conditional rule to
3101         generate testsuite_wchar_t.
3102         * testsuite/Makefile.in: Regenerate.
3103         * testsuite/lib/libstdc++-v3-dg.exp
3104         (libstdc++-v3-list-sourcefiles): Remove wchar_t files if
3105         testsuite_wchar_t is not present in the build directory.
3106         * testsuite/libstdc++-v3.dg/dg.exp: Add -g -O2 to DEFAULT_CXXFLAGS.
3107         Remove setulimit bits.
3108         * testsuite/26_numerics/complex_value.cc: Set to noopts.
3109         * testsuite/Makefile.am (CLEANFILES): Add.
3110         * testsuite/Makefile.in: Regenerate.
3111
3112 2003-01-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3113
3114         * config/os/hpux/os_defines.h (_GLIBCPP_GTHREAD_USE_WEAK): Define for
3115         __hppa__.
3116
3117 2003-01-14  Jeffrey D. Oldham  <oldham@codesourcery.com>
3118
3119         Further conform g++'s __vmi_class_type_info to the C++ ABI
3120         specification.
3121         * libsupc++/cxxabi.h
3122         (__vmi_class_type_info::__flags_masks): Remove enumerations not
3123         required by the specification.
3124
3125 2003-01-12  Benjamin Kosnik  <bkoz@redhat.com>
3126
3127         Renames, namespaces for testsuite utilities.
3128         * testsuite/testsuite_hooks.h: Put into namespace __gnu_cxx_test.
3129         (gnu_allocator_tracker): Rename to allocation_tracker.
3130         (gnu_new_allocator): Rename to tracker_alloc.
3131         (__set_testsuite_memlimit): Rename to set_memory_limits.
3132         (gnu_assignment_operator): Rename to assignment_operator.
3133         (gnu_destructor): Rename to destructor.
3134         (gnu_copy_tracker): Rename to copy_tracker.
3135         (gnu_char, gnu_int, gnu_long): Rename to pod_char, pod_int, pod_long.
3136         (run_tests_wrapped_locale): New.
3137         (run_tests_wrapped_env): New.
3138         * testsuite/testsuite_hooks.cc: Same.
3139         (class locale_data): Add.
3140         (class enviornment_variable): Add.
3141         (class not_found): Add.
3142         * testsuite/testsuite_allocator.h: Same.
3143         * testsuite/testsuite_allocator.cc: Same.
3144         * testsuite/23_containers/deque_ctor.cc
3145         (test_copy_ctor_exception_safety): Change gnu_allocator_tracker to
3146         allocation_tracker.
3147         Change gnu_new_allocator to tracker_alloc.
3148         Change gnu_counting_struct to counter.
3149         Change gnu_copy_tracker to copy_tracker.
3150         Change gnu_copy_constructor to copy_constructor.
3151         Change gnu_assignment_operator to assignment_operator.
3152         Inject.
3153         * testsuite/23_containers/vector_capacity.cc: Same.
3154         * testsuite/23_containers/vector_ctor.cc (test01): Same.
3155         * testsuite/23_containers/list_modifiers.cc: Change
3156         gnu_copy_tracker to copy_tracker.
3157         * testsuite/21_strings/ctor_copy_dtor.cc (main): Change
3158         __set_testsuite_memlimit to set_memory_limits.
3159         * testsuite/21_strings/insert.cc (main): Same.
3160         * testsuite/27_io/filebuf.cc: Change gnu_char to pod_char.
3161         * testsuite/27_io/stringstream.cc: Same.
3162         * testsuite/27_io/stringbuf.cc: Same.
3163         * testsuite/27_io/streambuf.cc: Same.
3164         * testsuite/27_io/ostream.cc: Same.
3165         * testsuite/27_io/istream.cc: Same.
3166         * testsuite/27_io/fstream.cc: Same.
3167         * testsuite/lib/libstdc++-v3-dg.exp
3168         (libstdc++-v3-list-sourcefiles): Additionally handle files two and
3169         three levels deeper in glob patterns.
3170
3171 2003-01-11  Phil Edwards  <pme@gcc.gnu.org>
3172
3173         * docs/doxygen/tables.html:  Finished now.
3174         * docs/doxygen/user.cfg.in:  Update to latest version of Doxygen.
3175         * include/bits/basic_ios.h (basic_ios::rdbuf):  Add example to
3176         comments.
3177
3178         * include/bits/deque.tcc, include/bits/stl_alloc.h,
3179         include/bits/stl_deque.h, include/bits/stl_list.h,
3180         include/bits/stl_vector.h:  Remove _GLIBCPP_DEPRECATED bits scheduled
3181         for 3.4 removal.
3182
3183 2003-01-09  Benjamin Kosnik  <bkoz@redhat.com>
3184
3185         * configure.in: Revert.
3186         * configure: Regenerate.
3187
3188 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
3189
3190         * include/Makefile.am (install-data-local): Prepend
3191         $(DESTDIR) to destination paths in all (un)installation
3192         commands.  Use ${c_base_builddir} and ${std_builddir}
3193         as destination subdirectories to achieve consistency with
3194         preceding mkinstalldirs commands.  No effect because both
3195         variables contain "." only.
3196         * include/Makefile.in: Regenerate.
3197
3198 2003-01-08  Benjamin Kosnik  <bkoz@redhat.com>
3199
3200         * include/Makefile.am (stamp-*): Add checks for existing stamps.
3201         * include/Makefile.in: Regenerate.
3202
3203         * acinclude.m4 (GLIBCPP_ENABLE_DEBUG): Correct comment.
3204         * aclocal.m4: Regenerate.
3205
3206         * configure.in: Don't add new multi-do rules every time the
3207         directory is reconfigured.
3208         * configure: Regenerate.
3209
3210 2003-01-08  Brad Spencer  <spencer@infointeractive.com>
3211             Nathan Myers  <ncm@cantrip.org>
3212
3213         * src/Makefile.am (stamp-debug): Clean.
3214         * src/Makefile.in: Regenerate.
3215
3216 2003-01-07  Benjamin Kosnik  <bkoz@redhat.com>
3217
3218         PR libstdc++/8707
3219         * Makefile.am (distclean-multi): Fix.
3220         * Makefile.in: Regenerate.
3221
3222 2003-01-06  Benjamin Kosnik  <bkoz@redhat.com>
3223
3224         * include/bits/locale_facets.h (messages): Move ctor, dtor
3225         definitions to..
3226         (__timepunct): Same.
3227         * config/locale/gnu/messages_members.h (messages): Add dtor, ctor
3228         definitions. Conditionalize for GNU systems.
3229         * config/locale/generic/messages_members.h (messages): Add dtor, ctor
3230         definitions.
3231         * config/locale/gnu/time_members.h (messages): New. Add dtor, ctor
3232         definitions. Conditionalize for GNU systems.
3233         * config/locale/generic/time_members.h (messages): New. Add dtor, ctor
3234         definitions.
3235         * include/bits/localefwd.h (locale::facet::_S_c_name): Add.
3236         * src/locale.cc: Define.
3237         * src/localename.cc (locale::_Impl::_Impl(facet**, size_t, bool):
3238         Use it.
3239         * config/locale/gnu/time_members.h: Use it.
3240         * config/locale/gnu/messages_members.h: Use it.
3241         * config/linker-map.gnu: Add locale::facets details.
3242         * include/Makefile.am (target_headers_extra): Add time_members.h.
3243         * include/Makefile.in: Regenerate.
3244         * acinclude.m4: Export CTIME_H.
3245         * aclocal.m4: Regenerate.
3246         * configure: Regnerate.
3247
3248 2003-01-06  Paolo Carlini  <pcarlini@unitus.it>
3249
3250         * src/codecvt.cc
3251         (codecvt<char, char, mbstate_t>::do_in, do_out):
3252         Tweak parameters to avoid unused parameter warnings.
3253
3254 2003-01-06  Paolo Carlini  <pcarlini@unitus.it>
3255
3256         PR libstdc++/9151
3257         * include/bits/locale_facets.cc (num_put::_M_convert_float):
3258         Limit __prec to digits10 + 2, not digits10 + 1, taking into
3259         account the possibility of %{g,G} conversion specifiers
3260         inside _S_format_float.
3261         * testsuite/27_io/ostream_inserter_arith.cc (test06): Add.
3262
3263 2003-01-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3264
3265         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init,
3266         libstdc++-v3-list-sourcefiles): Additionally handle files one
3267         level deeper in glob patterns.
3268
3269         * testsuite/27_io/istream_extractor_arith.cc: Delete, split...
3270         * testsuite/27_io/istream_extractor_arith/01.cc,
3271         testsuite/27_io/istream_extractor_arith/02.cc,
3272         testsuite/27_io/istream_extractor_arith/03.cc,
3273         testsuite/27_io/istream_extractor_arith/06.cc,
3274         testsuite/27_io/istream_extractor_arith/07.cc,
3275         testsuite/27_io/istream_extractor_arith/08.cc,
3276         testsuite/27_io/istream_extractor_arith/09.cc,
3277         testsuite/27_io/istream_extractor_arith/10.cc,
3278         testsuite/27_io/istream_extractor_arith/11.cc,
3279         testsuite/27_io/istream_extractor_arith/12.cc,
3280         testsuite/27_io/istream_extractor_arith/13.cc: ... to new files.
3281         * testsuite/27_io/istream_extractor_arith/12.cc: Add XFAIL for
3282         sparc*-*-solaris2*.
3283
3284 2003-01-05  Paolo Carlini <pcarlini@unitus.it>
3285
3286         PR libstdc++/9168
3287         * src/codecvt.cc
3288         (codecvt<char, char, mbstate_t>::do_in, do_out):
3289         Implement the resolution of DR19 (TC).
3290         * testsuite/22_locale/codecvt_members_char_char.cc
3291         (test01): Tweak.
3292
3293 2003-01-02  Jason Merrill  <jason@redhat.com>
3294
3295         * config/cpu/i486/atomicity.h (__exchange_and_add, __atomic_add):
3296         *__mem is also an output.
3297         * config/cpu/m68k/atomicity.h (__exchange_and_add): Likewise.