OSDN Git Service

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