OSDN Git Service

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