OSDN Git Service

2c1ec40354bf63323abf936bb5aa07649f4ff77a
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / ChangeLog
1 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
2
3         * include/bits/locale_facets.tcc (money_get::do_get(...,
4         long double&): Properly size the temporary buffer.
5         * testsuite/22_locale/money_get/get/char/11.cc: New.
6         * testsuite/22_locale/money_get/get/wchar_t/11.cc: Ditto.
7
8         * include/bits/locale_facets.tcc (num_put::_M_group_int,
9         num_put::_M_group_float, money_put::do_put(..., const
10         string_type&), collate::do_compare, collate::do_transform):
11         Prefer basic_string::data() to c_str() when the '\0'
12         terminator is not really needed.
13
14 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
15
16         * include/bits/locale_facets.tcc (__verify_grouping):
17         Prefer '=' to an unnecessary '&='.
18
19 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
20
21         * include/bits/basic_ios.tcc (copyfmt(const basic_ios&)):
22         Tweak my fix for libstdc++/12657.
23
24 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
25
26         * include/bits/locale_facets.tcc (money_get::do_get(...,
27         string_type&): Minor tweak to the previous commit.
28
29 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
30
31         * include/bits/locale_facets.tcc (money_get::do_get(...,
32         string_type&): Disregard the previous commit: doesn't hurt but
33         doesn't accomplish anything useful either. This is the right
34         one, speeding up greatly the function in case of early fail.
35
36 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
37
38         * include/bits/locale_facets.tcc (money_get::do_get(...,
39         string_type&): Move an if block, thus minimizing the amount
40         of code processed anyway when __tmp_units.size() == 0.
41
42 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
43
44         * include/bits/locale_facets.tcc
45         (time_get<>::_M_extract_via_format): Deal with case 'C' too,
46         equivalent to 'y'.
47
48 2003-10-23  Benjamin Kosnik  <bkoz@redhat.com>
49
50         * docs/html/documentation.html: Add a pointer to the doxygen style
51         guide.
52         * docs/html/17_intro/TODO: Update.
53         * docs/html/test.html: Add instructions for running a subset of
54         tests, update.
55
56 2003-10-23  Paolo Carlini  <pcarlini@suse.de>
57
58         * include/bits/locale_facets.tcc (money_get<>::do_get(...,
59         string_type&)): Use find_first_not_of to strip leading
60         zeros; if __tmp_units == "0" never prefix it with '-';
61         always fail if __tmp_units is empty.
62         * testsuite/22_locale/money_get/get/char/10.cc: New.
63         * testsuite/22_locale/money_get/get/wchar_t/10.cc: Ditto.
64
65 2003-10-23  Phil Edwards  <phil@codesourcery.com>
66
67         * config/os/vxworks/ctype_noninline.h:  Adjust ctor to match
68         2003-10-21 change.
69
70 2003-10-22  Paolo Carlini  <pcarlini@suse.de>
71
72         * include/bits/locale_facets.tcc (__int_to_char): Remove
73         the const int parameter.
74         (_M_insert_int): Update caller.
75         * src/locale-inst.cc (__int_to_char): Update instantiations.    
76
77 2003-10-22  Benjamin Kosnik  <bkoz@redhat.com>
78
79         * include/bits/locale_facets.h: Correct byname facets for "C"
80         locale.
81         * config/locale/generic/ctype_members.cc: Same.
82         * config/locale/generic/messages_members.h: Same.
83         * config/locale/gnu/ctype_members.cc: Same.
84         * config/locale/gnu/messages_members.h: Same.
85         * include/bits/codecvt.h: Same.
86         * src/ctype.cc: Same.
87         * testsuite/22_locale/codecvt_byname/1.cc: New.
88         * testsuite/22_locale/collate/1.cc: Edit.
89         * testsuite/22_locale/collate_byname/1.cc: Derivation tests, move to...
90         * testsuite/22_locale/collate_byname/named_equivalence.cc: ...here.
91         * testsuite/22_locale/ctype/1.cc: Derivation tests.
92         * testsuite/22_locale/ctype/11844.cc: Move...
93         * testsuite/22_locale/ctype_base/11844.cc: ...here.
94         * testsuite/22_locale/ctype_base/1.cc: Move mask bits here.
95         * testsuite/22_locale/ctype_byname/1.cc: Name.
96         * testsuite/22_locale/messages_byname/1.cc: New.
97         * testsuite/22_locale/messages_byname/named_equivalence.cc: New.
98         * testsuite/22_locale/moneypunct_byname/1.cc: Derivation test.
99         * testsuite/22_locale/moneypunct_byname/named_equivalence.cc: New.
100         * testsuite/22_locale/numpunct/1.cc: Edit.
101         * testsuite/22_locale/numpunct_byname/2.cc: Move...
102         * testsuite/22_locale/numpunct/members/char/3.cc: ...here.
103         * testsuite/22_locale/numpunct_byname/1.cc: Derivation tests.
104         * testsuite/22_locale/numpunct_byname/named_equivalence.cc: New.
105
106 2003-10-22  Paolo Carlini  <pcarlini@suse.de>
107
108         PR libstdc++/8610
109         * acinclude.m4 (GLIBCXX_CHECK_INT64_T): New macro,
110         checking for the availability of int64_t.
111         (GLIBCXX_CHECK_LFS): New macro, checking for LFS support.
112         * configure.ac: Call here.
113         * acconfig.h: Add undef for the corresponding symbols.
114         * config/io/basic_file_stdio.cc (__basic_file<char>::open):
115         Depending on _GLIBCXX_USE_LFS, call fopen64 or fopen.
116         (__basic_file<char>::seekoff): Likewise, call lseek64 when
117         available, otherwise lseek, checking the __off parameter.
118         * include/bits/postypes.h: Typedef __streamoff_base_type
119         to int64_t if available, otherwise long long.
120         * aclocal.m4: Regenerate.
121         * config.h.in: Likewise.
122         * configure: Likewise.
123
124         * acinclude.m4 (GLIBCXX_CHECK_POLL, GLIBCXX_CHECK_WRITEV):
125         Use AC_TRY_LINK instead of AC_TRY_COMPILE.
126         
127 2003-10-22  Paolo Carlini  <pcarlini@suse.de>
128
129         PR libstdc++/12657
130         * include/bits/basic_ios.tcc (copyfmt(const basic_ios&)):
131         Implement resolution of DR 292 (WP).
132         * docs/html/ext/howto.html: Add entry for DR 292.
133
134 2003-10-21  Benjamin Kosnik  <bkoz@redhat.com>
135
136         * include/ext/mt_allocator.h: Change include to gthr.h.
137         * include/ext/rope: Same. Add _Refcount_base definitions.
138         * include/ext/pool_allocator.h: Adjust namespaces.
139         * include/bits/stl_threads.h (_Refcount_base): Move.
140         Put remaining into namespace __gnu_cxx.
141         
142 2003-10-21  Benjamin Kosnik  <bkoz@redhat.com>
143  
144         PR libstdc++/9858
145         * include/bits/locale_facets.h (ctype<char>): Remove
146         __ctype_abstract_base.
147         (ctype<char>::do_is): Remove.
148         (ctype<char>::do_scan_is): Remove.
149         * src/ctype.cc: Same. Inline the rest.
150         * testsuite/22_locale/ctype/is/char/9858.cc: New.
151         * config/os/aix/ctype_noninline.h: Adjust ctor.
152         * config/os/bsd/freebsd/ctype_noninline.h: Same.
153         * config/os/bsd/netbsd/ctype_noninline.h: Same.
154         * config/os/djgpp/ctype_noninline.h: Same.
155         * config/os/generic/ctype_noninline.h: Same.
156         * config/os/gnu-linux/ctype_noninline.h: Same.
157         * config/os/hpux/ctype_noninline.h: Same.
158         * config/os/irix/irix5.2/ctype_noninline.h: Same.
159         * config/os/irix/irix6.5/ctype_noninline.h: Same.
160         * config/os/mingw32/ctype_noninline.h: Same.
161         * config/os/newlib/ctype_noninline.h: Same.
162         * config/os/qnx/qnx6.1/ctype_noninline.h: Same.
163         * config/os/solaris/solaris2.5/ctype_noninline.h: Same.
164         * config/os/solaris/solaris2.6/ctype_noninline.h: Same.
165         * config/os/solaris/solaris2.7/ctype_noninline.h: Same.
166         * config/os/windiss/ctype_noninline.h: Same.
167
168 2003-10-21  Paolo Carlini  <pcarlini@suse.de>
169
170         * src/locale.cc: Tweak a comment.
171         * src/localename.cc: Move a comment.
172
173 2003-10-20  Benjamin Kosnik  <bkoz@redhat.com>
174  
175         PR libstdc++/10081
176         * testsuite_hooks.h: Add pod_type, ctype and numpunct specializations.
177         * testsuite_hooks.cc: Same.
178         * 22_locale/numpunct/members/pod/1.cc: Edit.
179         * 22_locale/numpunct/members/pod/2.cc: Same.
180         * 27_io/basic_istream/sentry/char/3983-fstream.cc: Move ...
181         * 27_io/basic_istream/sentry/char/3983-sstream.cc: Move ...
182         * 27_io/basic_istream/extractors_arithmetic/pod/3983-1.cc: Here.
183         * 27_io/basic_istream/extractors_character/pod/3983-2.cc: Here.
184         * 27_io/basic_istream/extractors_other/pod/3983-3.cc: Here.
185         * 27_io/basic_ostream/sentry/char/3983-fstream.cc: Remove.
186         * 27_io/basic_ostream/sentry/char/3983-sstream.cc: Remove.
187         * 27_io/basic_istream/sentry/pod/1.cc: New.
188         * 27_io/basic_ostream/sentry/pod/1.cc: New.
189         * 21_strings/basic_string/inserters_extractors/pod/10081-in.cc: New.
190         * 21_strings/basic_string/inserters_extractors/pod/10081-out.cc: New.
191
192 2003-10-20  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
193
194         * config/cpu/mips/atomicity.h (__atomic_add): Use _ABIO32 instead
195         of external _MIPS_SIM_ABI32.
196
197 2003-10-20  Phil Edwards  <phil@codesourcery.com>
198
199         * configure.ac:  Fix comment typo.
200         * configure.host:  Add vxworks to host_os switch.
201         * crossconfig.m4:  Remove old commented os_include_dir variables
202         left over from autotools transition.
203         (*-vxworks):  New stanza.
204         (*-windiss):  Add missing symbols.
205         * configure:  Regenerate.
206         * config/os/vxworks/ctype_base.h, config/os/vxworks/ctype_inline.h,
207         config/os/vxworks/ctype_noninline.h, config/os/vxworks/os_defines.h:
208         New files.
209         * config/os/windiss/os_defines.h:  Define __C9X__.
210
211 2003-10-19  David Edelsohn  <edelsohn@gnu.org>
212
213         PR other/12506
214         * configure.host (aix4,aix*): Define os_include_dir to os/generic.
215
216 2003-10-18  Andreas Tobler  <a.tobler@schweiz.ch>
217
218         * src/locale.cc (locale::_S_initialize): Re-apply workaround a
219         confusion of the use of the gthr API when __gthread_active_p()
220         returns true.
221
222 2003-10-17  Benjamin Kosnik  <bkoz@redhat.com>
223  
224         * src/Makefile.am: Add new files.
225         * src/Makefile.in: Regenerate.
226         * src/globals.cc: Split into..
227         * src/globals_io.cc: New.
228         * src/globals_locale.cc: New.
229         * src/ios.cc: Split into...
230         * src/ios_init.cc: New.
231         * src/ios_locale.cc: New.
232         * src/locale-inst.cc: Split into..
233         * src/wlocale-inst.cc: New.
234         * src/locale-misc-inst.cc: New.
235         * src/locale.cc, src/localename: Split into...
236         * src/locale_facets.cc: New.
237         * src/locale_init.cc: New.
238         * src/wstring-inst.cc: Add copyright info.
239
240 2003-10-16  Petur Runolfsson  <peturr02@ru.is>
241
242         PR libstdc++/11450
243         PR libstdc++/11543
244         PR libstdc++/12065
245         * config/io/basic_file_stdio.cc (__basic_file::seekoff):
246         Change return value from streampos to streamoff.
247         (__basic_file::seekpos): Delete.
248         * config/io/basic_file_stdio.h: Same.
249         * config/io/c_io_stdio.h: Remove streamoff and wstreamsize typedefs.
250         * include/Makefile.am (bits_headers): Add bits/postypes.h.
251         * include/bits/char_traits.h: Include bits/postypes.h instead of
252         bits/fpos.h.
253         * include/bits/fstream.tcc (basic_filebuf::open,
254         basic_filebuf::pbackfail): Don't use < or >= to compare pos_type
255         values, use == and != instead.
256         (basic_filebuf::_M_seek): Use explicit conversion from streamoff
257         to pos_type.
258         (basic_filebuf::imbue):  Don't use ! on pos_type values, use
259         == instead. Don't use __check_facet(_M_codecvt) unless is_open().
260         * include/bits/postypes.h: New file.
261         Add __streamoff_base_type typedef, streamsize.
262         (streamoff, streampos, wstreampos): Define typedefs, with
263         streamoff defined as...
264         (streamoff): New class. Document implementation defined
265         aspects.
266         (fpos): New implementation. Document implementation defined
267         aspects.
268         * include/bits/sstream.tcc (basic_stringbuf::seekpos): Use
269         explicit conversion from pos_type to off_type.
270         * include/std/std_iosfwd.h: Include bits/postypes.h instead
271         of bits/fpos.h.
272         * testsuite/27_io/basic_filebuf/seekoff/char/11543.cc: New test.
273         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/11543.cc: New test.
274         * testsuite/27_io/fpos/11450.cc: New test.
275         * testsuite/27_io/fpos/mbstate_t/12065.cc: New test.
276         * testsuite/27_io/fpos/mbstate_t/4_neg.cc: New test.
277         * testsuite/27_io/types/3.cc: New test.
278
279 2003-10-16  Benjamin Kosnik  <bkoz@redhat.com>
280  
281         * configure.host: Remove fpos_include_dir.
282         * configure.ac: Remove FPOS_INC_SRCDIR.
283         * configure: Regenerate.
284         * acinclude.m4 (GLIBCXX_ENABLE_CSTDIO): Remove FPOS_H.
285         * aclocal.m4: Regenerate.
286         * include/Makefile.am (host_headers): Remove fpos.h.
287         (bits_headers): Add postypes.h.
288         * include/Makefile.in: Regenerate.
289         * config/os/gnu-linux/fposh: Remove.
290         * config/os/generic/fpos.h: Remove.
291  
292         * testsuite/27_io/basic_filebuf/seekoff/char/1-in.cc: Fixup.
293         * testsuite/27_io/basic_filebuf/seekoff/char/1-io.cc: Same.
294         * testsuite/27_io/basic_filebuf/seekoff/char/1-out.cc: Same.
295         * testsuite/27_io/basic_filebuf/seekoff/char/2-in.cc: Same.
296         * testsuite/27_io/basic_filebuf/seekoff/char/2-io.cc: Same.
297         * testsuite/27_io/basic_filebuf/seekoff/char/2-out.cc: Same.
298         * testsuite/27_io/basic_filebuf/seekpos/char/1-in.cc: Same.
299         * testsuite/27_io/basic_filebuf/seekpos/char/1-io.cc: Same.
300         * testsuite/27_io/basic_filebuf/seekpos/char/1-out.cc: Same.
301         * testsuite/27_io/basic_filebuf/seekpos/char/2-in.cc: Same.
302         * testsuite/27_io/basic_filebuf/seekpos/char/2-io.cc: Same.
303         * testsuite/27_io/basic_filebuf/seekpos/char/2-out.cc: Same.
304         * testsuite/27_io/basic_istream/seekg/char/2.cc: Same.
305         * testsuite/27_io/basic_stringbuf/seekoff/char/1.cc: Same.
306         * testsuite/27_io/basic_stringbuf/seekpos/char/1.cc: Same.
307         * testsuite/27_io/fpos/mbstate_t/3.cc: Same.
308         * testsuite/27_io/objects/char/10.cc: Same.
309
310 2003-10-16  Paolo Carlini  <pcarlini@suse.de>
311
312         * src/locale.cc (locale::locale(const char*)): ... one
313         more comparison missed in the previous commit.
314
315 2003-10-16  Benjamin Kosnik  <bkoz@redhat.com>
316
317         * acconfig.h: Add HAVE_DRAND48.
318         * crossconfig.m4: Remove ISATTY.
319         * aclocal.m4: Regenerated.
320         * config.h.in: Regenerated.
321         * configure: Regenerated.
322         
323 2003-10-16  Bernardo Innocenti  <bernie@develer.com>
324
325         * config/cpu/m68k/atomicity.h (__exchange_and_add): Use TAS on
326         __mcf5400__. Don't rely on __mc68000__ to detect a bare 68000.
327         Document SMP safeness of asm macros.
328
329 2003-10-16  Paolo Carlini  <pcarlini@suse.de>
330
331         * src/locale.cc (locale::locale(const char*)): Tweak
332         a couple of comparisons to use basic_string operators.
333
334 2003-10-16  Paolo Carlini  <pcarlini@suse.de>
335
336         PR libstdc++/12540
337         * config/locale/gnu/monetary_members.cc
338         (moneypunct<wchar_t, true/false>::_M_initialize_moneypunct):
339         Don't leak memory if new throws.
340         * src/locale.cc (locale::locale(const char*)): In order not
341         to leak memory in case new throws, use a basic_string type
342         for __res too and avoid strdup.
343
344 2003-10-14  Jeff Bailey  <jbailey@nisa.net>
345         
346         PR libstdc++/12562
347         * crossconfig.m4: Share the config between *-linux* and *-gnu*.
348         * configure: Regenerate.
349
350 2003-10-14  Carlo Wood  <carlo@alinoe.com>
351
352         PR libstdc++/12600
353         * include/bits/demangle.h (session<Allocator>::
354           decode_unqualified_name(string_type& output)): Fail on a
355           <operator-name> when decoding <template-argument>.
356         * testsuite/demangle/regression/cw-15.cc: New.
357
358 2003-10-14  Paolo Carlini  <pcarlini@unitus.it>
359
360         PR libstdc++/11480
361         * include/bits/stl_algo.h (unique): Fix.
362         * testsuite/25_algorithms/unique.cc: Move to unique/1.cc.
363         * testsuite/25_algorithms/unique/11480.cc: New, from the PR.
364         * testsuite/25_algorithms/unique/2.cc: New.
365
366 2003-10-14  Paolo Carlini  <pcarlini@unitus.it>
367
368         * src/localename.cc (_M_replace_categories, M_replace_facet):
369         Const-ify a couple of variables.
370
371 2003-10-14  Petur Runolfsson  <peturr02@ru.is>
372             Andreas Tobler  <a.tobler@schweiz.ch>
373
374         * src/locale.cc (locale::_S_initialize): Workaround a confusion
375         of the use of the gthr API when __gthread_active_p() returns true.
376
377 2003-10-12  Petur Runolfsson  <peturr02@ru.is>
378             Paolo Carlini  <pcarlini@unitus.it>
379
380         PR libstdc++/11460
381         * src/strstream.cc (pbackfail): Fix to use to_int_type.
382         * testsuite/backward/11460.cc: New, from the PR.
383
384 2003-10-12  Paolo Carlini  <pcarlini@unitus.it>
385
386         * config/locale/ieee_1003.1-2001/codecvt_specializations.h:
387         Change #ifdef _GLIBCXX_RESOLVE_LIB_DEFECTS to a comment.
388         * include/bits/basic_string.tcc: Likewise.
389         * include/bits/ios_base.h: Likewise.
390         * include/bits/istream.tcc: Likewise.
391         * include/bits/locale_facets.tcc: Likewise.
392         * include/bits/ostream.tcc: Likewise.
393         * include/bits/stl_function.h: Likewise.
394         * include/bits/stl_multiset.h: Likewise.
395         * include/bits/stl_pair.h: Likewise.
396         * include/bits/stl_set.h: Likewise.
397         * include/bits/streambuf_iterator.h
398         * include/std/std_iosfwd.h: Likewise.
399         * include/std/std_istream.h: Likewise.
400         * include/std/std_sstream.h: Likewise.
401         * include/std/std_streambuf.h: Likewise.
402         * src/ios.cc: Likewise.
403         * include/bits/c++config:
404         Comment out #define _GLIBCXX_RESOLVE_LIB_DEFECTS 1.
405         * testsuite/27_io/ios_base/cons/assign_neg.cc: Tweak a
406         dg-error directive due to removal of a blank line.
407         * testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise.
408
409 2003-10-12  Andreas Tobler  <a.tobler@schweiz.ch>
410             Paolo Carlini  <pcarlini@unitus.it>
411
412         PR libstdc++/11844/11740 (cont)
413         * config/os/generic/ctype_inline.h (ctype<char>::is):
414         Generically, use a bitmasksize of 15 (instead of 10);
415         Fix the logic to actually return (M & m) != 0 as per
416         22.2.1.1.2.
417
418 2003-10-11  Bernardo Innocenti  <bernie@develer.com>
419
420         * crossconfig.m4 (*-uclinux*): New target.
421         * configure: Regenerate.
422
423 2003-10-10  Paolo Carlini  <pcarlini@unitus.it>
424
425         * include/bits/ostream.tcc (operator<<(basic_ostream&, _CharT))
426         Avoid unnecessarily calling __builtin_alloca and dealing
427         explicitly with width() smaller than zero.
428         (operator<<(basic_ostream&, char), operator<<(basic_ostream&,
429         const _CharT*), operator<<(basic_ostream<_CharT, _Traits>&,
430         const char*), operator<<(basic_ostream<char, _Traits>&,
431         const char*), operator<<(basic_ostream, const basic_string&)):
432         Likewise.
433
434 2003-10-09  Benjamin Kosnik  <bkoz@redhat.com>
435
436         * config/linker-map.gnu: Make more *_type_info bits visible.
437         Move new/delete bits back into GLIBCXX space.
438
439         * include/bits/locale_classes.h: Move _M_id out of line, so that
440         locale::id::_S_highwater can be removed from the export list.
441         * src/locale.cc (locale::id::_M_id): Define.
442         
443 2003-10-09  Andreas Tobler  <a.tobler@schweiz.ch>
444
445         * testsuite/lib/libstdc++.exp: Set LD_LIBRARY_PATH_64 for
446         SPARC64.
447
448 2003-10-09  Paolo Carlini  <pcarlini@unitus.it>
449
450         PR libstdc++/11844
451         * config/os/aix/ctype_base.h: Fix 'alnum' and 'graph'
452         to conform to the requirements of 22.2.1.
453         * config/os/bsd/freebsd/ctype_base.h: Likewise.
454         * config/os/djgpp/ctype_base.h: Likewise.
455         * config/os/generic/ctype_base.h: Likewise.
456         * config/os/gnu-linux/ctype_base.h: Likewise.
457         * config/os/hpux/ctype_base.h: Likewise.
458         * config/os/irix/irix6.5/ctype_base.h: Likewise.
459         * config/os/solaris/solaris2.6/ctype_base.h: Likewise.
460         * config/os/solaris/solaris2.7/ctype_base.h: Likewise.
461         * testsuite/22_locale/ctype/11844.cc: New.
462
463         * config/locale/generic/ctype_members.cc (do_is):
464         Generically, use a bitmasksize of 15 (instead of 10), since
465         we don't know the numerical encoding of the various categories
466         in the underlying /usr/include/ctype.h.
467
468 2003-10-09  Benjamin Kosnik  <bkoz@redhat.com>
469
470         * src/string-inst.cc: Prune.
471         * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust line numbers.
472         * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
473         
474 2003-10-09  Petur Runolfsson  <peturr02@ru.is>
475
476         * src/io-inst.cc: Don't include iostream.
477         * include/bits/ios_base.h (ios_base::failure): Use string.
478         * src/Makefile.am: Add ios_failure.cc.
479         * src/Makefile.in: Regenerate.
480         * src/ios.cc: Move ios_base::failure definitions to...
481         * src/ios_failure.cc: ...here. New.
482
483 2003-10-09  Petur Runolfsson  <peturr02@ru.is>
484
485         PR libstdc++/9874
486         * include/bits/fstream.tcc (basic_filebuf::seekoff):
487         Move code needed for both seekoff and seekpos...
488         (basic_filebuf::_M_seek): ...here. New function.
489         (basic_filebuf::seekpos): Don't call seekoff, call _M_seek.
490         * include/std/std_fstream.h (basic_filebuf::_M_seek): Declare it.
491         * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9874.cc: New test.
492
493         * testsuite/22_locale/locale/cons/12438.cc: Increase memory limit.
494
495 2003-10-08  Paolo Carlini  <pcarlini@unitus.it>
496
497         * include/bits/locale_facets.tcc: More minor cosmetic
498         changes and const-ifications of some variables.
499
500 2003-10-07  Paolo Carlini  <pcarlini@unitus.it>
501
502         * include/bits/locale_facets.tcc: Minor cosmetic changes
503         and const-ifications of some variables.
504
505         * include/bits/locale_facets.tcc
506         (money_get::do_get(..., string_type&)): Simplify an if-else.
507
508 2003-10-06  Paolo Carlini  <pcarlini@unitus.it>
509
510         PR libstdc++/11740
511         * config/locale/gnu/ctype_members.cc (ctype<wchar_t>::do_is):
512         Fix to actually return (M & m) != 0 as per 22.2.1.1.2.
513         * config/locale/generic/ctype_members.cc: Same.
514         * testsuite/22_locale/ctype/is/wchar_t/11740.cc: New.
515
516 2003-10-06  Paolo Carlini  <pcarlini@unitus.it>
517
518         * include/bits/locale_facets.tcc (__pad<>::_S_pad):
519         Improve performance-wise: avoid one traits::copy, avoid
520         the __builtin_alloca, streamline.
521
522 2003-10-05  Paolo Carlini  <pcarlini@unitus.it>
523
524         * include/bits/locale_facets.tcc
525         (num_put::do_put(..., bool)): Prefer ?: to if-else.
526         (time_get::_M_extract_name): Qualify min with std::.
527         (__pad<>::_S_pad): Constify two variables; simplify an
528         if-else statement factoring out some code.
529
530         * include/bits/locale_facets.tcc: Minor cosmetic changes.
531
532 2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
533
534         * include/bits/locale_facets.tcc (num_get::_M_extract_float):
535         Constify a couple of variables.
536         (num_get::do_get(..., bool&)): Constify __c; prefer *__beg,
537         ++__beg to *__beg++.
538
539 2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
540             Petur Runolfsson  <peturr02@ru.is>
541
542         * include/ext/stdio_sync_filebuf.h: Don't include the whole
543         <fstream>, only <streambuf> and <cstdio>.
544
545 2003-10-04  Paolo Carlini  <pcarlini@unitus.it>
546
547         PR libstdc++/12206
548         * include/bits/fstream.tcc (imbue): In case a codecvt facet
549         is not available, set _M_codecvt = 0.
550         * testsuite/27_io/basic_filebuf/imbue/12206.cc: New.
551
552 2003-10-02  Harald Boehme  <boehme@informatik.hu-berlin.de>
553
554         PR libstdc++/12451
555         * libsupc++/cxxabi.h: Move forward declaration of __class_type_info.
556         
557 2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
558
559         * include/bits/locale_classes.h (locale::facet::_S_get_c_name): Add.
560         * src/locale.cc: Define.
561         * src/localename.cc: Use it.
562         * config/locale/generic/time_members.h: Same.
563         * config/locale/gnu/messages_members.h: Same.
564         * config/locale/gnu/time_members.h: Same.
565
566 2003-10-02  Paolo Carlini  <pcarlini@unitus.it>
567
568         PR libstdc++/12232
569         * include/bits/fstream.tcc (seekoff): Ignore the openmode
570         argument; simplify.
571         * config/io/basic_file_stdio.h (__basic_file<char>::seekoff,
572         seekpos): Remove the openmode argument.
573         * config/io/basic_file_stdio.cc (__basic_file<char>::seekoff,
574         seekpos): Remove redundant placeholder for the openmode argument.
575         * testsuite/27_io/basic_filebuf/seekoff/char/12232.cc: New.
576         * testsuite/27_io/basic_filebuf/seekoff/char/3-in.cc: Tweak.
577         * testsuite/27_io/basic_filebuf/seekoff/char/3-out.cc: Likewise.
578         * testsuite/27_io/basic_filebuf/seekpos/char/3-in.cc: Likewise.
579         * testsuite/27_io/basic_filebuf/seekpos/char/3-out.cc: Likewise.
580
581 2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
582
583         * src/locale.cc (locale::_S_initialize): Use __gthread_active_p.
584         (locale::facet::_S_get_c_locale): Same.
585         
586 2003-10-02  Benjamin Kosnik  <bkoz@redhat.com>
587
588         * config/linker-map.gnu: Export _S_get_c_locale instead of
589         _S_c_locale object.
590
591 2003-10-02  Petur Runolfsson  <peturr02@ru.is>
592
593         * config/locale/generic/c_locale.cc
594         (category_names, locale::_S_categories): Const qualify.
595         * config/locale/gnu/c_locale.cc: Same.
596         * config/locale/generic/time_members.h (__timepunct::__timepunct):
597         Copy string contents before assigning to _M_name_timepunct,
598         qualify strcpy and strlen with std::.
599         * config/locale/gnu/time_members.h: Same.
600         * config/locale/gnu/messages_members.h (messages::messages):
601         Copy string contents before assigning to _M_name_messages,
602         qualify strcpy and strlen with std::.
603         * config/os/gnu-linux/ctype_noninline.h
604         (ctype<char>::classic_table()): Don't call locale::classic().
605         * include/bits/locale_classes.h
606         (locale::_S_categories): Const qualify. 
607         (locale::_S_once, locale::_S_initialize_once,
608         locale::facet::_S_once, locale::facet::_S_initialize_once,
609         locale::facet::_S_get_c_locale): Declare.
610         (locale::_S_initialize): Don't define.
611         (locale::facet::_S_c_locale): Make private.
612         (locale::facet::_S_c_name): Same, const qualify.
613         (locale::_Impl::_Impl(facet**, size_t, bool)): Drop unused
614         parameters, add throw() specifier.
615         * include/bits/locale_facets.h (__timepunct::_M_name_timepunct,
616         messages::_M_name_messages): Const qualify.
617         * src/locale.cc
618         (locale::_S_once, locale::facet::_S_once): Define.
619         (locale::classic): Move initialization code...
620         (locale::_S_initialize_once): ...here.  
621         (locale::_S_initialize): Call _S_initialize_once through
622         __gthread_once.
623         (locale::facet::_S_initialize_once): Initialize _S_c_locale.
624         (locale::facet::_S_get_c_locale): Call _S_initialize_once through
625         __gthread_once before returning _S_c_locale.
626         * src/localename.cc (locale::_Impl::_Impl(facet**, size_t, bool)):
627         Drop unused parameters, add throw() specifier, don't initialize
628         locale::facet::_S_c_locale and _S_c_name.
629         
630         * config/locale/generic/messages_members.h:
631         Replace _S_c_locale with _S_get_c_locale().
632         * config/locale/gnu/c_locale.cc: Same.
633         * config/locale/gnu/messages_members.h: Same.
634         * config/locale/gnu/numeric_members.cc: Same.
635         * config/locale/gnu/time_members.cc: Same.
636         * config/os/gnu-linux/ctype_noninline.h: Same.
637         * include/bits/locale_facets.h: Same.
638         * include/bits/locale_facets.tcc: Same.
639         * src/codecvt.cc: Same.
640         * src/ctype.cc: Same.
641
642 2003-10-02  Carlo Wood  <carlo@alinoe.com>
643
644         * include/bits/demangle.h (demangle<Allocator>::symbol(char const*)):
645         Decode symbols that start with _GLOBAL_[ID]_ differently: the
646         trailing part ends with a terminating zero and is not necessarily an
647         encoding.
648         * src/demangle.cc (): Same.
649         * testsuite/demangle/regression/cw-13.cc: Adjust for new output.
650
651 2003-10-02  Paolo Carlini  <pcarlini@unitus.it>
652
653         * testsuite/22_locale/locale/cons/12438.cc: Use
654         __gnu_test::try_named_locale("").
655
656 2003-10-01  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
657
658         * linkage.m4 (GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_0): Define.
659         (GLIBCXX_CHECK_STDLIB_SUPPORT): Use it to test for lrand48
660         instead of drand48.
661         * acconfig.h (HAVE_DRAND48): Renamed to HAVE_LRAND48.
662         * crossconfig.m4 (*-freebsd*): Define HAVE_LRAND48 instead of
663         HAVE_DRAND48.
664         * config.h.in, configure: Regenerate.
665         * include/bits/stl_algo.h: Use _GLIBCXX_HAVE_LRAND48 to guard
666         lrand48 use.
667
668 2003-10-01  Nathan Myers  <ncm@cantrip.org>
669
670         * include/bits/locale_facets.tcc (time_put::put): Avoid
671         expensive *__s++, in favor of *__s, ++__s.
672
673 2003-10-01  Paolo Carlini  <pcarlini@unitus.it>
674
675         * include/bits/locale_facets.tcc (time_put::put): Minor
676         tweak to the previous commit.
677
678 2003-10-01  Paolo Carlini  <pcarlini@unitus.it>
679
680         PR libstdc++/12439
681         * include/bits/locale_facets.tcc (time_put::put): Deal
682         with the three issues pointed out by the PR.
683         * testsuite/22_locale/time_put/put/char/12439_1.cc: New.
684         * testsuite/22_locale/time_put/put/char/12439_3.cc: New.
685         * testsuite/22_locale/time_put/put/wchar_t/12439_1.cc: New.
686         * testsuite/22_locale/time_put/put/wchar_t/12439_2.cc: New.
687         * testsuite/22_locale/time_put/put/wchar_t/12439_3.cc: New.
688
689 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
690
691         * include/bits/stl_algo.h: Minor cosmetic reformattings.
692
693 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
694
695         * include/bits/stl_algo.h (search_n): Tweak, to spare the
696         first --__n.
697
698 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
699
700         * testsuite/22_locale/locale/cons/12352.cc: Explicitly
701         qualify exception name.
702
703 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
704
705         PR libstdc++/12438
706         * include/bits/locale_facets.tcc (locale::combine): Don't
707         leak memory if _M_replace_facet throws.
708         * testsuite/22_locale/locale/cons/12438.cc: New, from the PR.
709
710         * include/bits/locale_classes.h (locale::locale(const locale&,
711         _Facet*)): Tweak, use consistently _M_remove_reference.
712
713 2003-09-30  Paolo Carlini  <pcarlini@unitus.it>
714
715         PR libstdc++/12352 (cont)
716         * src/localename.cc (locale::_Impl::_Impl(const char*, size_t)):
717         Don't leak __cloc; don't leak if any of the _M_init_facet(...)
718         calls fail.
719         (locale::_Impl::_Impl(const _Impl&, size_t)): Tweak.
720         (locale::_Impl::~_Impl): Don't do anything if !_M_facets,
721         !_M_caches, !_M_names.
722
723 2003-09-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
724
725         * configure.host: Handle Solaris 2.5 micro releases explicitly.
726         Remove wildcards from Solaris 2.6, 7-9: there were no
727         micro releases.
728         Treat Solaris 10 and up like 7-9.
729
730 2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
731
732         * include/bits/stl_algo.h (search_n): Improve the previous
733         fix as suggested by Martin.
734
735 2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
736
737         PR libstdc++/12296
738         * include/bits/istream.tcc (peek): Set eofbit if sgetc
739         returns eof.
740         * testsuite/27_io/basic_istream/peek/char/12296.cc:
741         New, from the PR.
742
743 2003-09-29  Nathan Myers  <ncm@cantrip.org>
744             Paolo Carlini  <pcarlini@unitus.it>
745
746         PR libstdc++/11400
747         * include/bits/stl_algo.h (search_n):
748         Use iterator_traits<>::difference_type for __n.
749         * testsuite/25_algorithms/search_n/11400.cc: New, from the PR.
750
751 2003-09-29  Paolo Carlini  <pcarlini@unitus.it>
752
753         * testsuite/22_locale/locale/cons/12352.cc:
754         Use __attribute__((unused)) for test.
755
756 2003-09-26  Ulrich Weigand  <uweigand@de.ibm.com>
757
758         * testsuite/22_locale/time_put/put/char/2.cc (test_02): Allow either 
759         "Son" or "So" as abbreviated name for Sunday in de_DE locale.
760         * testsuite/22_locale/time_put/put/wchar_t/2.cc (test_02): Likewise.
761
762 2003-09-26  Brad Spencer  <spencer@infointeractive.com>
763
764         * testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc:
765         Explicitly qualify exceptions.
766         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Same.
767         * testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same.
768         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
769         * testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc: Same.
770         
771 2003-09-25  Paolo Carlini  <pcarlini@unitus.it>
772
773         PR libstdc++/12352
774         * src/localename.cc (locale::_Impl::_Impl(const _Impl&,
775         size_t)): Don't leak if memory allocations for _M_facets,
776         _M_caches, and _M_names fail.
777         (locale::_Impl::_Impl(const char*, size_t)): Ditto.
778         (locale::_Impl::_M_replace_categories(const _Impl*,
779         category)): Ditto.
780         (locale::_Impl::_M_install_facet(const locale::id*,
781         const facet*)): Ditto.
782         * include/bits/locale_classes.h (locale::locale(const locale&,
783         _Facet*)): Don't leak memory.
784         * testsuite/22_locale/locale/cons/12352.cc: New, from the PR.
785
786         * src/localename.cc (locale::_Impl::_Impl(facet**, size_t,
787         bool)): Qualify with std:: strcpy, tweak.
788         * include/bits/locale_classes.h
789         (locale::_Impl::_M_check_same_name): Qualify strcmp.
790
791 2003-09-25  Brad Spencer  <spencer@infointeractive.com>
792
793         PR libstdc++/6072
794         * acinclude.m4: Split out checks for vfwscanf, vswscanf, vwscanf,
795         wcstof, iswblank.       
796         * aclocal.m4: Regenerate.
797         * config.h.in: Regenerate.
798         * configure: Regenerate.
799         * crossconfig.m4: Add in wchar_t bits for solaris crosses.
800         * config/io/basic_file_stdio.cc: Guard unistd.h.
801         * include/c_compatibility/wchar.h: Guard extra wchar_t functionality.
802         * include/c_std/std_cwchar.h: Same.
803         * include/c_std/std_cwctype.h: Same.
804         
805 2003-09-25  Benjamin Kosnik  <bkoz@redhat.com>
806
807         PR libstdc++/11065
808         * config/locale/gnu/ctype_members.cc (ctype<wchar_t>::do_is): Fix.
809         * config/locale/generic/ctype_members.cc: Same.
810         * testsuite/22_locale/ctype/is/char/1.cc: Initialize mask.
811         * testsuite/22_locale/ctype/is/wchar_t/1.cc: Same.
812
813         * config/os/generic/ctype_inline.h: Update.
814         
815 2003-09-25  Ulrich Weigand  <uweigand@de.ibm.com>
816
817         * src/Makefile.am (version_dep): New variable.
818         (libstdc___la_DEPENDENCIES): Use it to add dependency on
819         libstdc++-symbol.ver only when using symbol versioning.
820         * src/Makefile.in: Regenerate.
821
822 2003-09-23  Benjamin Kosnik  <bkoz@redhat.com>
823
824         * include/bits/locale_facets.tcc: Tweak to avoid warnings.
825         * testsuite/testsuite_hooks.h: Same.
826         * testsuite/*/*.cc: Same.
827
828 2003-09-22  Petur Runolfsson  <peturr02@ru.is>
829
830         * include/bits/istream.tcc (basic_istream::read,
831         basic_istream::readsome, basic_istream::putback,
832         basic_istream::unget, operator>>(basic_istream, CharT)):
833         Avoid redundant setstate(failbit) calls when sentry::operator bool()
834         returns false.
835
836 2003-09-22  Carlo Wood  <carlo@alinoe.com>
837
838         PR libstdc++/12365
839         * include/bits/demangle.h (qualifier(int, cv_qualifier_nt,
840         char const*, int, int)):  Remove unused identifier
841         cv_qualifier for overloaded constructor.
842
843 2003-09-18  Benjamin Kosnik  <bkoz@redhat.com>
844
845         PR libstdc++/11504
846         * acinclude.m4 (GLIBCXX_EXPORT_FLAGS): Add -Wcast-qual to
847         WARN_FLAGS, remove -Wno-format.
848         * aclocal.m4: Regenerate.
849         * configure: Regenerate.
850
851 2003-09-18  Petur Runolfsson  <peturr02@ru.is>
852
853         * config/io/basic_file_stdio.cc (sys_getc, sys_ungetc): Delete.
854         * config/io/basic_file_stdio.h: Same.
855         * include/std/std_fstream.h (__ctype_type): Delete.
856         * include/std/std_streambuf.h (__ctype_type, __state_type): Delete.
857         
858 2003-09-17  Benjamin Kosnik  <bkoz@redhat.com>
859
860         PR libstdc++/12239
861         * configure.host (abi_baseline_pair): Error out on solaris2
862         configurations without a minor version number.
863
864 2003-09-13  Phil Edwards  <phil@codesourcery.com>
865
866         * docs/doxygen/run_doxygen:  Clear GENERATE_TAGFILE entirely
867         if man pages are on.
868         * docs/doxygen/user.cfg.in:  And here.
869
870 2003-09-10  Daniel Jacobowitz  <drow@mvista.com>
871             Andreas Jaeger <aj@suse.de>
872
873         PR libstdc++/12189
874         * acinclude.m4 (GLIBCXX_CONFIGURE_TESTSUITE): Don't build
875         abi_check if cross compiling.
876         * aclocal.m4: Regenerated.
877         * configure: Regenerated.
878
879 2003-09-10  Jeffrey D. Oldham  <oldham@codesourcery.com>
880
881         * libsupc++/vec.cc (__cxa_vec_new2): If the allocator returns
882         NULL, return NULL.  This reflects a C++ ABI change 2003 Sep 05.
883         (__cxa_vec_new3): Likewise.
884
885 2003-09-10  Petur Runolfsson  <peturr02@ru.is>
886
887         * include/bits/fstream.tcc (basic_filebuf::seekoff):
888         Use codecvt::length to handle variable-width stateless encodings
889         correctly.
890         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/1.cc: New test.
891         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/2.cc: New test.
892
893 2003-09-10  Alan Modra  <amodra@bigpond.net.au>
894
895         * config/io/basic_file_stdio.cc (_M_open_mode): Assign __p_mode
896         rather than or'ing.
897
898 2003-09-09  Alan Modra  <amodra@bigpond.net.au>
899
900         * configure: Regenerate.
901
902 2003-09-09  David Edelsohn  <edelsohn@gnu.org>
903
904         * src/ios.cc (ios_base::Init::Init): Remove unnecessary
905         qualifier from _S_synced_with_stdio.
906
907 2003-09-09  Bernardo Innocenti  <bernie@develer.com>
908
909         * include/c_std/std_cstdlib.h: Avoid using missing C library symbols.
910
911 2003-09-04  Petur Runolfsson  <peturr02@ru.is>
912
913         PR libstdc++/9028
914         * include/bits/fstream.tcc
915         (basic_filebuf::_M_destroy_internal_buffer): Destroy _M_ext_buf.
916         (basic_filebuf::basic_filebuf): Initialize _M_ext_buf,
917         _M_ext_buf_size, _M_ext_next and _M_ext_end.
918         (basic_filebuf::underflow): Handle variable-width stateless
919         encodings (codecvt::encoding() == 0), including UTF-8.
920         * include/std/std_fstream.h (basic_filebuf):
921         Declare _M_ext_buf, _M_ext_buf_size, _M_ext_next, _M_ext_end.
922         * testsuite/27_io/basic_filebuf/underflow/wchar_t/1.cc: New test.
923         * testsuite/27_io/basic_filebuf/underflow/wchar_t/2.cc: New test.
924         * testsuite/27_io/basic_filebuf/underflow/wchar_t/3.cc: New test.
925         * testsuite/27_io/basic_filebuf/underflow/wchar_t/4.cc: New test.
926         * testsuite/27_io/basic_filebuf/underflow/wchar_t/5.cc: New test.
927         * testsuite/27_io/objects/wchar_t/12.cc: New test.
928         * testsuite/27_io/objects/wchar_t/13.cc: New test.
929
930 2003-09-04  Jonathan Wakely  <redi@gcc.gnu.org>
931
932         * docs/html/faq/index.html: Note that a namespace alias can't be
933         used when specialising templates in extension namespace.
934         * docs/html/faq/index.txt: Regenerate.
935
936 2003-09-03  Petur Runolfsson  <peturr02@ru.is>
937
938         PR libstdc++/12048
939         * include/ext/stdio_sync_filebuf.h
940         (stdio_sync_filebuf::_M_unget_buf): Declare it.
941         (stdio_sync_filebuf::stdio_sync_filebuf): Initialize _M_unget_buf.
942         (stdio_sync_filebuf::uflow): Store the returned character in
943         _M_unget_buf.
944         (stdio_sync_filebuf::pbackfail): If argument is eof(), pass
945         _M_unget_buf to syncungetc(). Set _M_unget_buf to eof().
946         (stdio_sync_filebuf<char>::xsgetn): Store last read character in
947         _M_unget_buf, if any, else eof().
948         (stdio_sync_filebuf<wchar_t>::xsgetn: Store last read character in
949         _M_unget_buf, if any, else eof().
950         * testsuite/27_io/objects/char/12048.cc: Rename to...
951         * testsuite/27_io/objects/char/12048-1.cc: ...this.
952         * testsuite/27_io/objects/char/12048-2.cc: New test.
953         * testsuite/27_io/objects/char/12048-3.cc: New test.
954         * testsuite/27_io/objects/char/12048-4.cc: New test.
955         * testsuite/27_io/objects/char/12048-5.cc: New test. XFAIL.
956         * testsuite/27_io/objects/wchar_t/12048-1.cc: New test.
957         * testsuite/27_io/objects/wchar_t/12048-2.cc: New test.
958         * testsuite/27_io/objects/wchar_t/12048-3.cc: New test.
959         * testsuite/27_io/objects/wchar_t/12048-4.cc: New test.
960         * testsuite/27_io/objects/wchar_t/12048-5.cc: New test. XFAIL.
961         * testsuite/ext/stdio_sync_filebuf_char.cc
962         (test02, test03, test04, test05): New tests.
963         * testsuite/ext/stdio_sync_filebuf_wchar_t.cc
964         (test02, test03, test04, test05): New tests.
965
966 2003-09-03  Petur Runolfsson  <peturr02@ru.is>
967
968         * docs/html/27_io/howto.html: setbuf(0, 0) has no effect on
969         stringbuf or strstreambuf. Fix typos.
970
971 2003-09-02  Phil Edwards  <phil@codesourcery.com>
972
973         * acinclude.m4 (GLIBCXX_ENABLE_HOSTED):  #define _GLIBCXX_HOSTED
974         appropriately.
975         * config.h.in:  Add _GLIBCXX_HOSTED.
976         * libsupc++/eh_term_handler.cc:  Test it here; initialize
977         __terminate_handler to std::abort if freestanding.
978         * aclocal.m4, configure:  Regenerated.
979         * docs/html/configopts.html:  Document --disable-hosted-libstdcxx.
980
981 2003-08-29  Nathan Myers  <ncm@cantrip.org>
982         
983         PR libstdc++/11990      
984         * include/bits/locale_facets.tcc (__pad): delete dead code.
985
986 2003-08-28  Alan Modra  <amodra@bigpond.net.au>
987
988         * configure.ac: Test $with_cross_host against $build_alias, not $build.
989         * configure: Regenerate.
990
991 2003-08-27  Petur Runolfsson  <peturr02@ru.is>
992
993         * testsuite/27_io/objects/wchar_t/10.cc: Move wcout stuff...
994         * testsuite/27_io/objects/wchar_t/11.cc: ...here. New file.
995
996 2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
997
998         * Makefile.am:  Remove trailing whitespace.  Remove needless
999         "foo = @foo@" assignments.  Replace direct uses of @foo@ with $(foo).
1000         * include/Makefile.am:  Likewise.
1001         * libmath/Makefile.am:  Likewise.
1002         * libsupc++/Makefile.am:  Likewise.
1003         * po/Makefile.am:  Likewise.
1004         * src/Makefile.am:  Likewise.
1005         * testsuite/Makefile.am:  Likewise.
1006
1007         * Makefile.in, include/Makefile.in, libmath/Makefile.in,
1008         libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
1009         testsuite/Makefile.in:  Regenerated.
1010
1011 2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
1012
1013         * acinclude.m4 (GLIBCXX_EXPORT_INCLUDES):  Change quoting of
1014         includedir.
1015         * aclocal.m4, configure:  Regenerate.
1016
1017 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
1018
1019         * acinclude.m4: Include no-executables.m4.
1020         * configure.ac: Uncomment GCC_NO_EXECUTABLES.
1021         * aclocal.m4: Regenerated.
1022         * configure: Regenerated.
1023
1024 2003-08-27  Daniel Jacobowitz  <drow@mvista.com>
1025
1026         * acinclude.m4: Don't call AC_ISC_POSIX.
1027         * aclocal.m4: Regenerated.
1028         * configure: Regenerated.
1029
1030 2003-08-27  Phil Edwards  <pme@gcc.gnu.org>
1031
1032         * acinclude.m4 (GLIBCXX_CONDITIONAL):  New macro.  Wrap
1033         AM_CONDITIONAL.  Replace all calls to AM_CONDITIONAL with this one.
1034         (GLIBCXX_ENABLE_HOSTED):  New macro, sets new variable is_hosted,
1035         used elsewhere in this file.
1036         (GLIBCXX_EVALUATE_CONDITIONALS):  New macro...
1037         * configure.ac:  ...called here to expand all conditionals.
1038         * Makefile.am:  Conditionalize SUBDIRS on GLIBCXX_HOSTED.
1039         * include/Makefile.am:  Remove redundant gxx_include_dir assignment.
1040         (install-freestanding-headers):  New target, a subset of
1041         install-headers.  Conditionalize install-data-local on GLIBCXX_HOSTED.
1042
1043         * aclocal.m4, configure, Makefile.in, include/Makefile.in,
1044         libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
1045         src/Makefile.in, testsuite/Makefile.in:  Regenerated.
1046
1047 2003-08-26  Phil Edwards  <pme@gcc.gnu.org>
1048
1049         * docs/doxygen/run_doxygen:  Shell fixes.  Remove hardcoded local
1050         pathnames from generated tag file.
1051
1052 2003-08-26  Phil Edwards  <pme@gcc.gnu.org>
1053
1054         * Makefile.am:  Add comment.
1055         * acinclude.m4 (GLIBCXX_CONFIGURE):  Set new glibcxx_SUBDIRS and
1056         SUBDIRS variables.
1057         * configure.ac:  Use them both here, instead of hardcoded lists.
1058
1059         * fragment.am:  Add STAMP varaible.
1060         * include/Makefile.am:  Cosmetic whitespace cleanup.  Use $(LN_S)
1061         instead of @LN_S@.
1062         (stamp-*):  Move file creation rule outside of 'if' branches to
1063         ensure the stamp-* files are actually updated.  Use $(STAMP).
1064         * src/Makefile.am:  Remove now-nonexistant variable.
1065         * libsupc++/Makefile.am:  Likewise.  Snap the assignment chain
1066         for -prefer-pic.
1067         * po/Makefile.am:  Include same fragment as all the others.
1068
1069         * aclocal.m4, configure, Makefile.in, include/Makefile.in,
1070         libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in:  Regenerated.
1071
1072 2003-08-26  Loren J. Rittle  <ljrittle@acm.org>
1073
1074         * testsuite/data/cin_unget-1.txt: New.
1075         * testsuite/27_io/objects/char/12048.cc: New.
1076
1077 2003-08-25  Zack Weinberg  <zack@codesourcery.com>
1078
1079         * config/os/hpux/os_defines.h: Unconditionally define
1080         _GLIBCXX_GTHREAD_USE_WEAK to 0.
1081
1082 2003-08-19  Geoffrey Keating  <geoffk@apple.com>
1083
1084         * crossconfig.m4 (*-darwin*): Add a large and boring stanza for
1085         crosses to Darwin targets.
1086         * configure: Regenerate.
1087
1088 2003-08-19  Petur Runolfsson  <peturr02@ru.is>
1089
1090         * include/ext/ropeimpl.h: #include <ostream> instead of <iostream>
1091
1092 2003-08-17  Phil Edwards  <pme@gcc.gnu.org>
1093
1094         * configure.ac:  GCC_NO_EXECUTABLES was supposed to be commented
1095         in the patch from 3 minutes ago.  Boy, is my face red.
1096         * configure:  At least I remembered to regenerate this.
1097
1098 2003-08-17  Phil Edwards  <pme@gcc.gnu.org>
1099
1100         * acinclude.m4 (GLIBCXX_EXPORT_INCLUDES):  Remove LIBMATH_INCLUDES
1101         and LIBSUPCXX_INCLUDES.  Re-purpose TOPLEVEL_INCLUDES to refer to
1102         things from the top level.
1103         * configure.ac (GLIBCXX_IS_NATIVE):  Determine earlier and re-order.
1104         Comment out the conditionals for CANADIAN and GLIBCXX_BUILD_LIBMATH
1105         (currently unused).  Strip the fake-VPATH shell fragment from
1106         automake-generated rules, if present.
1107         * linkage.m4:  Add comment.
1108
1109         * fragment.am:  New file, containing factored-out common settings.
1110         (AM_CPPFLAGS):  Absorb the deprecated INCLUDES variable contents.
1111         * Makefile.am:  Include fragment.am.  Remove common variables.
1112         * include/Makefile.am:  Likewise.
1113         * libmath/Makefile.am:  Likewise.
1114         * libsupc++/Makefile.am:  Likewise.
1115         * po/Makefile.am:  Likewise.  Print rules during check.
1116         * src/Makefile.am:  Likewise.
1117         * testsuite/Makefile.am:  Likewise.
1118
1119         * aclocal.m4, configure, Makefile.in, include/Makefile.in,
1120         libmath/Makefile.in, libsupc++/Makefile.in, po/Makefile.in,
1121         src/Makefile.in, testsuite/Makefile.in:  Regenerate.
1122
1123 2003-08-11  John Levon  <levon@movementarian.org>
1124
1125         * docs/html/ext/howto/guide.html (GLIBCXX_FORCE_NEW): Update
1126         remaining places for the name change from GLIBCPP_FORCE_NEW
1127         to GLIBCXX_FORCE_NEW
1128
1129 2003-08-11  Benjamin Kosnik  <bkoz@redhat.com>
1130
1131         * include/bits/basic_ios.h: Remove *_iter typedefs, change num*
1132         typedefs to num_*.
1133         * include/bits/basic_ios.tcc: Same.
1134         * include/bits/istream.tcc: Same.
1135         * include/bits/locale_facets.h: Same.
1136         * include/bits/ostream.tcc: Same.
1137         * include/std/std_istream.h: Same.
1138         * include/std/std_ostream.h: Same.
1139         * testsuite/26_numerics/complex_inserters_extractors.cc: Fix.
1140
1141         * include/ext/rope: Remove build warning.
1142
1143 2003-08-11  Andreas Jaeger  <aj@suse.de>
1144
1145         * include/Makefile.am (stamp-c_base): Add dependency on stamp-bits
1146         to make SMP-safe.
1147         * include/Makefile.in: Regenerated.
1148
1149 2003-08-11  Phil Edwards  <pme@gcc.gnu.org>
1150
1151         * acinclude.m4 (GLIBCXX_CONFIGURE):  Unprecious CC and CFLAGS
1152         when calling AC_PROG_CC.
1153         * aclocal.m4, configure:  Regenerate.
1154
1155 2003-08-11  Phil Edwards  <pme@gcc.gnu.org>
1156
1157         * acinclude.m4:  Properly quote variable which will be expanded
1158         inside makefiles.  Use CXX instead of CC to extract compiler info.
1159         * configure.ac (AC_INIT):  Use the new 4-arg form to finally get the
1160         correct form in PACKAGE.
1161         * aclocal.m4, configure:  Regenerate.
1162
1163 2003-08-08  Benjamin Kosnik  <bkoz@redhat.com>
1164
1165         * testsuite/Makefile.am (check-abi): Change libstdc++-v3 to libstdc++.
1166         (check-abi-verbose): Same.
1167         * testsuite/testsuite_performance.h (report_performance): Same.
1168
1169 2003-08-08  Loren J. Rittle  <ljrittle@acm.org>
1170
1171         * testsuite/testsuite_performance.h (__FreeBSD__): Add fake mallinfo.
1172
1173 2003-08-07  Doug Gregor  <dgregor@apple.com>
1174
1175         * include/bits/char_traits.h (char_traits::not_eof): Match operand
1176         types in ? :.
1177
1178 2003-08-07  Bernardo Innocenti  <bernie@develer.com>
1179
1180         PR libstdc++/11784
1181         * libstdc++-v3/config/cpu/m68k/atomicity.h (__exchange_and_add):
1182         Replace variants with new BSET-based version.
1183
1184 2003-08-07  Carlo Wood  <carlo@alinoe.com>
1185
1186         * include/bits/demangle.h: Do not use cctype functions that depend
1187         on locale.
1188
1189 2003-08-05  Phil Edwards  <pme@gcc.gnu.org>
1190
1191         * configure.in:  Rename...
1192         * configure.ac:  ...to this.
1193         * docs/html/17_intro/porting.texi:  Update name.
1194
1195         * docs/html/17_intro/porting.html:  Regenerate.
1196         * config.h.in, Makefile.in, include/Makefile.in, libmath/Makefile.in,
1197         libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
1198         testsuite/Makefile.in:  Regenerate (picks up new dependancy).
1199
1200 2003-08-05  Phil Edwards  <pme@gcc.gnu.org>
1201
1202         * acinclude.m4 (GLIBCXX_ENABLE_SJLJ_EXCEPTIONS):  Put down the crack
1203         pipe, open the window to let out the fumes, redo the option-handling
1204         logic to properly execute the detection test.
1205         * aclocal.m4, configure:  Regenerate.
1206
1207 2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
1208
1209         Convert to new autotools.
1210         * acconfig.h:  Update with correct names.
1211         * configure.host (ATOMICITYH):  Rename to atomicity_include_dir.
1212         (qnx6.[12]*):  'q' comes before 's', not after 'w'.
1213         * configure.in:  Update.  Split hardcoded cross-configury settings
1214         out to...
1215         * crossconfig.m4:  ...here.  New file.  Contents untouched.
1216         * acinclude.m4:  Reorganize and rewrite as needed.  Split large
1217         chunks out to...
1218         * linkage.m4:  ...here.  New file.  Math and stdlib linkage tests.
1219         Contents untouched.
1220         * scripts/testsuite_flags.in:  Update.
1221
1222         * Makefile.am:  Remove unneeded AUTOMAKE_OPTIONS settings and other
1223         variables (already generated by automake).
1224         * include/Makefile.am:  Ditto.
1225         * libmath/Makefile.am:  Ditto.
1226         * libsupc++/Makefile.am:  Ditto.
1227         * po/Makefile.am:  Ditto.
1228         * src/Makefile.am:  Ditto.
1229
1230         * aclocal.m4:  Regenerate using new versions.
1231         * config.h.in:  Ditto.
1232         * configure:  Ditto.
1233         * Makefile.in:  Ditto.
1234         * include/Makefile.in:  Ditto.
1235         * libmath/Makefile.in:  Ditto.
1236         * libsupc++/Makefile.in:  Ditto.
1237         * po/Makefile.in:  Ditto.
1238         * src/Makefile.in:  Ditto.
1239         * testsuite/Makefile.in:  Ditto.
1240
1241 2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
1242
1243         * po/libstdc++.pot:  Re-extract/regenerate.
1244
1245 2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
1246
1247         * testsuite/Makefile.am (DEJATOOL,EXPECT,RUNTEST,RUNTESTFLAGS):
1248         Remove unneeded variable assignments.  Leave them for automake.
1249         * testsuite/lib/libstdc++-v3.exp:  Rename...
1250         * testsuite/lib/libstdc++.exp:  ...to this.  Adjust function names
1251         accordingly.
1252         * testsuite/libstdc++-v3.dg/dg.exp:  Rename...
1253         * testsuite/libstdc++-dg/normal.exp:  ...to this.  Adjust function
1254         names accordingly.
1255
1256 2003-08-04  Phil Edwards  <pme@gcc.gnu.org>
1257
1258         * docs/doxygen/guide.html:  run_doxygen uses bash.
1259         * docs/doxygen/mainpage.html:  We'll be shipping tag files.
1260         * docs/doxygen/run_doxygen:  Tweaks and improvements.
1261         * docs/doxygen/user.cfg.in:  Set GENERATE_TAGFILE.
1262         * docs/html/install.html:  Update autoconf/automake requirements.
1263         * docs/html/test.html:  Add section describing DejaGNU support.
1264         * docs/html/17_intro/confdeps.dot:  New file, generates...
1265         * docs/html/17_intro/confdeps.png:  ...this new file.
1266         * docs/html/Makefile:  Generated here.
1267         * docs/html/17_intro/configury.html:  New file.
1268
1269 2003-07-31  Phil Edwards  <pme@gcc.gnu.org>
1270
1271         * testsuite/lib/libstdc++-v3-dg.exp:  Rename...
1272         * testsuite/lib/libstdc++-v3.exp:  ...to this.
1273         * testsuite/libstdc++-v3.dg/dg.exp:  No special case needed now.
1274
1275 2003-07-31  Doug Gregor  <dgregor@apple.com>
1276
1277         Add user specialization tests.
1278         * testsuite/23_containers/deque/1.cc: New.
1279         * testsuite/23_containers/list/1.cc: New.
1280         * testsuite/23_containers/map/1.cc: New.
1281         * testsuite/23_containers/multimap/1.cc: New.
1282         * testsuite/23_containers/multiset/1.cc: New.
1283         * testsuite/23_containers/set/1.cc: New.
1284         * testsuite/23_containers/vector/1.cc: New.
1285
1286 2003-07-31  Benjamin Kosnik  <bkoz@redhat.com>
1287
1288         Reshuffle 23_containers testsuite.
1289         * 23_containers/adaptors.cc, bitset_ctor.cc,bitset_members.cc,
1290         bitset_shift.cc, deque_ctor.cc, deque_operators.cc,
1291         list_capacity.cc, list_ctor.cc, list_modifiers.cc, list_operators.cc,
1292         map_insert.cc, map_operators.cc, map_operators_neg.cc, multiset.cc,
1293         set_operators_neg.cc, vector_bool.cc, vector_capacity.cc,
1294         vector_ctor.cc, vector_element_access.cc, vector_modifiers.cc,
1295         vector_resize.cc: Split into...
1296         * 23_containers/bitset/cons/1.cc: New.
1297         * 23_containers/bitset/cons/6282.cc: New.
1298         * 23_containers/bitset/count/6124.cc: New.
1299         * 23_containers/bitset/operations/1.cc: New.
1300         * 23_containers/bitset/operations/2.cc: New.
1301         * 23_containers/bitset/test/1.cc: New.
1302         * 23_containers/bitset/to_ulong/1.cc: New.
1303         * 23_containers/deque/cons/1.cc: New.
1304         * 23_containers/deque/cons/2.cc: New.
1305         * 23_containers/deque/operators/1.cc: New.
1306         * 23_containers/list/capacity/1.cc: New.
1307         * 23_containers/list/cons/1.cc: New.
1308         * 23_containers/list/cons/2.cc: New.
1309         * 23_containers/list/cons/3.cc: New.
1310         * 23_containers/list/cons/4.cc: New.
1311         * 23_containers/list/cons/5.cc: New.
1312         * 23_containers/list/cons/6.cc: New.
1313         * 23_containers/list/cons/7.cc: New.
1314         * 23_containers/list/cons/8.cc: New.
1315         * 23_containers/list/cons/9.cc: New.
1316         * 23_containers/list/modifiers/1.cc: New.
1317         * 23_containers/list/modifiers/2.cc: New.
1318         * 23_containers/list/modifiers/3.cc: New.
1319         * 23_containers/list/operators/1.cc: New.
1320         * 23_containers/list/operators/2.cc: New.
1321         * 23_containers/list/operators/3.cc: New.
1322         * 23_containers/list/operators/4.cc: New.
1323         * 23_containers/map/insert/1.cc: New.
1324         * 23_containers/map/operators/1.cc: New.
1325         * 23_containers/map/operators/1_neg.cc: New.
1326         * 23_containers/multiset/insert/1.cc: New.
1327         * 23_containers/priority_queue/members/7161.cc: New.
1328         * 23_containers/queue/members/7157.cc: New.
1329         * 23_containers/set/operators/1_neg.cc: New.
1330         * 23_containers/stack/members/7158.cc: New.
1331         * 23_containers/vector/bool/1.cc: New.
1332         * 23_containers/vector/bool/6886.cc: New.
1333         * 23_containers/vector/capacity/1.cc: New.
1334         * 23_containers/vector/capacity/2.cc: New.
1335         * 23_containers/vector/capacity/8230.cc: New.
1336         * 23_containers/vector/cons/1.cc: New.
1337         * 23_containers/vector/cons/2.cc: New.
1338         * 23_containers/vector/cons/3.cc: New.
1339         * 23_containers/vector/cons/4.cc: New.
1340         * 23_containers/vector/cons/6513.cc: New.
1341         * 23_containers/vector/element_access/1.cc: New.
1342         * 23_containers/vector/modifiers/1.cc: New.
1343         * 23_containers/vector/modifiers/2.cc: New.
1344         * 23_containers/vector/resize/1.cc: New.
1345
1346 2003-07-31  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
1347
1348         * testsuite/thread/pthread1.cc: Add alpha*-*-osf* to dg-do run,
1349         dg-options.
1350         * testsuite/thread/pthread2.cc: Likewise.
1351         * testsuite/thread/pthread3.cc: Likewise.
1352         * testsuite/thread/pthread4.cc: Likewise.
1353         * testsuite/thread/pthread5.cc: Likewise.
1354         * testsuite/thread/pthread6.cc: Likewise.
1355         * testsuite/thread/pthread7-rope.cc: Likewise.
1356
1357 2003-07-30  Phil Edwards  <pme@gcc.gnu.org>
1358
1359         * include/bits/c++config:  Partial reversion (comment placement) of
1360         previous patch.
1361
1362 2003-07-30  Benjamin Kosnik  <bkoz@redhat.com>
1363
1364         * include/bits/c++config (_GLIBCXX_FULLY_COMPLIANT_HEADERS): Remove.
1365         (_GLIBCXX_NO_TEMPLATE_EXPORT): To _GLIBCXX_EXPORT_TEMPLATE.
1366         (_GLIBCXX_AT_AT): Remove.
1367         (__USE_MALLOC): Remove.
1368         * include/std/std_fstream.h: Modify.
1369         * include/bits/basic_ios.h: Same.
1370         * include/bits/valarray_array.h: Same.
1371         * include/c_std/std_cmath.h: Same.
1372         * include/c_std/cmath.tcc: Same.
1373         * include/std/std_vector.h: Same.
1374         * include/std/std_string.h: Same.
1375         * include/std/std_stack.h: Same.
1376         * include/std/std_queue.h: Same.
1377         * include/std/std_list.h: Same.
1378         * include/std/std_deque.h: Same.
1379         * include/std/std_streambuf.h: Same.
1380         * include/std/std_sstream.h: Same.
1381         * include/std/std_ostream.h: Same.
1382         * include/std/std_istream.h: Same.
1383         * include/bits/valarray_array.tcc: Same, format.
1384
1385         * include/c/std_cctype.h: Fix include guards.
1386         * include/c/std_cerrno.h: Same.
1387         * include/c/std_cfloat.h: Same.
1388         * include/c/std_climits.h: Same.
1389         * include/c/std_clocale.h: Same.
1390         * include/c/std_cmath.h: Same.
1391         * include/c/std_csetjmp.h: Same.
1392         * include/c/std_csignal.h: Same.
1393         * include/c/std_cstdarg.h: Same.
1394         * include/c/std_cstddef.h: Same.
1395         * include/c/std_cstdio.h: Same.
1396         * include/c/std_cstdlib.h: Same.
1397         * include/c/std_cstring.h: Same.
1398         * include/c/std_ctime.h: Same.
1399         * include/c/std_cwchar.h: Same.
1400         * include/c/std_cwctype.h: Same.
1401         * include/c_std/cmath.tcc: Same.
1402         * include/c_std/std_cmath.h: Same.
1403
1404 2003-07-30  Gawain Bolton  <gp.bolton@computer.org>
1405
1406         PR libstdc++/11504.
1407         * include/bits/stl_tree.h: Replace C-style casts with C++-style
1408         casts.  Changes to avoid casting away constness.  Eliminate
1409         _Rb_tree_base_iterator class.  Change _Rb_tree_iterator to use
1410         initialization lists.  Move out implementation of __black_count()
1411         to...
1412         * src/stl_tree.cc: ...here and rename _Rb_tree_black_count().
1413         Rename_Rb_tree_base_iterator::_M_increment() to
1414         _Rb_tree_increment and _Rb_tree_base_iterator::_M_decrement() to
1415         _Rb_tree_decrement.
1416         * config/linker-map.gnu: Add and change symbols here.
1417
1418 2003-07-30  Jonathan Wakely  <redi@gcc.gnu.org>
1419
1420         * docs/html/22_locale/howto.html: Use locale::classic() instead
1421         of locale("C").
1422
1423 2003-07-28  Benjamin Kosnik  <bkoz@redhat.com>
1424
1425         * testsuite/testsuite_hooks.h: Remove list include.
1426         (func_callback): Define as unique type, not std::list.
1427         Change DEBUG_ASSERT to _GLIBCXX_ASSERT.
1428         * testsuite/libstdc++-v3.dg/dg.exp: Same.
1429         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Same.
1430         * testsuite/23_containers/bitset_ctor.cc:
1431         * testsuite/17_intro/header_ciso646.cc: Remove DEBUG_ASSERT.
1432         * testsuite/18_support/numeric_limits.cc: Same.
1433         * testsuite/21_strings/basic_string/append/char/1.cc: Same.
1434         * testsuite/21_strings/basic_string/append/wchar_t/1.cc: Same.
1435         * testsuite/21_strings/basic_string/compare/char/1.cc: Same.
1436         * testsuite/21_strings/basic_string/compare/wchar_t/1.cc: Same.
1437         * testsuite/21_strings/basic_string/element_access/char/1.cc: Same.
1438         * testsuite/21_strings/basic_string/element_access/char/2.cc: Same.
1439         * testsuite/21_strings/basic_string/element_access/char/3.cc: Same.
1440         * testsuite/21_strings/basic_string/element_access/wchar_t/1.cc: Same.
1441         * testsuite/21_strings/basic_string/element_access/wchar_t/2.cc: Same.
1442         * testsuite/21_strings/basic_string/element_access/wchar_t/3.cc: Same.
1443         * testsuite/21_strings/basic_string/find/char/1.cc: Same.
1444         * testsuite/21_strings/basic_string/find/char/2.cc: Same.
1445         * testsuite/21_strings/basic_string/find/char/3.cc: Same.
1446         * testsuite/21_strings/basic_string/find/wchar_t/1.cc: Same.
1447         * testsuite/21_strings/basic_string/find/wchar_t/2.cc: Same.
1448         * testsuite/21_strings/basic_string/find/wchar_t/3.cc: Same.
1449         * testsuite/21_strings/basic_string/insert/char/1.cc: Same.
1450         * testsuite/21_strings/basic_string/insert/char/2.cc: Same.
1451         * testsuite/21_strings/basic_string/insert/wchar_t/1.cc: Same.
1452         * testsuite/21_strings/basic_string/insert/wchar_t/2.cc: Same.
1453         * testsuite/21_strings/basic_string/inserters_extractors/char/1.cc:
1454         * testsuite/21_strings/basic_string/inserters_extractors/char/4.cc:
1455         * testsuite/21_strings/basic_string/inserters_extractors/char/5.cc:
1456         * testsuite/21_strings/basic_string/inserters_extractors/char/6.cc:
1457         * testsuite/21_strings/basic_string/inserters_extractors/char/7.cc:
1458         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/1.cc:
1459         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/4.cc:
1460         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/5.cc:
1461         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/6.cc:
1462         * testsuite/21_strings/basic_string/inserters_extractors/wchar_t/7.cc:
1463         * testsuite/21_strings/basic_string/operators/char/1.cc: Same.
1464         * testsuite/21_strings/basic_string/operators/char/2.cc: Same.
1465         * testsuite/21_strings/basic_string/operators/wchar_t/1.cc: Same.
1466         * testsuite/21_strings/basic_string/operators/wchar_t/2.cc: Same.
1467         * testsuite/21_strings/basic_string/replace/char/1.cc: Same.
1468         * testsuite/21_strings/basic_string/replace/wchar_t/1.cc: Same.
1469         * testsuite/21_strings/basic_string/rfind/char/1.cc: Same.
1470         * testsuite/21_strings/basic_string/rfind/char/2.cc: Same.
1471         * testsuite/21_strings/basic_string/rfind/char/3.cc: Same.
1472         * testsuite/21_strings/basic_string/rfind/wchar_t/1.cc: Same.
1473         * testsuite/21_strings/basic_string/rfind/wchar_t/2.cc: Same.
1474         * testsuite/21_strings/basic_string/rfind/wchar_t/3.cc: Same.
1475         * testsuite/21_strings/basic_string/substr/char/1.cc: Same.
1476         * testsuite/21_strings/basic_string/substr/wchar_t/1.cc: Same.
1477         * testsuite/23_containers/bitset_ctor.cc: Same.
1478         * testsuite/23_containers/bitset_shift.cc: Same.
1479         * testsuite/23_containers/vector_ctor.cc: Same.
1480         * testsuite/23_containers/vector_element_access.cc: Same.
1481         * testsuite/24_iterators/istreambuf_iterator.cc: Same.
1482         * testsuite/24_iterators/iterator.cc: Same.
1483         * testsuite/24_iterators/ostreambuf_iterator.cc: Same.
1484         * testsuite/25_algorithms/lower_bound.cc: Same.
1485         * testsuite/26_numerics/complex_inserters_extractors.cc: Same.
1486         * testsuite/27_io/basic_istream/extractors_arithmetic/char/01.cc: Same.
1487         * testsuite/27_io/basic_istream/extractors_arithmetic/char/02.cc: Same.
1488         * testsuite/27_io/basic_istream/extractors_arithmetic/char/03.cc: Same.
1489         * testsuite/27_io/basic_istream/extractors_arithmetic/char/06.cc: Same.
1490         * testsuite/27_io/basic_istream/extractors_arithmetic/char/07.cc: Same.
1491         * testsuite/27_io/basic_istream/extractors_arithmetic/char/08.cc: Same.
1492         * testsuite/27_io/basic_istream/extractors_arithmetic/char/09.cc: Same.
1493         * testsuite/27_io/basic_istream/extractors_arithmetic/char/10.cc: Same.
1494         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/1.cc: Same.
1495         * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/1.cc:
1496         Same.
1497
1498 2003-07-28  Phil Edwards  <pme@gcc.gnu.org>
1499
1500         * docs/doxygen/user.cfg.in, docs/html/abi.txt, docs/html/debug.html,
1501         docs/html/test.html, docs/html/17_intro/headers_cc.txt,
1502         docs/html/17_intro/howto.html, docs/html/ext/howto.html:  Change
1503         GLIBCPP to GLIBCXX (and explain as needed).
1504
1505 2003-07-28  Phil Edwards  <pme@gcc.gnu.org>
1506
1507         * README:  Update.
1508
1509 2003-07-28  Phil Edwards  <pme@gcc.gnu.org>
1510
1511         * testsuite/22_locale/messages/members/char/1.cc,
1512         testsuite/22_locale/messages/members/char/2.cc,
1513         testsuite/22_locale/messages/members/char/3.cc,
1514         testsuite/22_locale/messages_byname/1.cc:  Update comment regarding
1515         the origin of LOCALEDIR.
1516         * testsuite/lib/libstdc++-v3.exp:  New file.
1517
1518 2003-07-25  Benjamin Kosnik  <bkoz@redhat.com>
1519
1520         * include/bits/char_traits.h: Update copyright, tweak.
1521         * testsuite/ext/pod_char_traits.cc: Explicitly qualify namespace
1522         std types.
1523
1524 2003-07-24  Matt Austern  <austern@apple.com>
1525
1526         * /include/bits/char_traits.h (class char_traits): Put all the
1527         real work into the new class template __gnu_cxx::char_traits.
1528         Gave generic definitions for member functions.  Types are taken
1529         from the new class template __gnu_cxx::_Char_types.
1530         * testsuite/21_strings/char_traits/requirements/short/1.cc: New
1531         file.  Test of std::char_traits<short>, which serves as a test of
1532         the char_traits primary template.
1533
1534 2003-07-24  Benjamin Kosnik  <bkoz@redhat.com>
1535
1536         * testsuite/*: Change __gnu_cxx_test to __gnu_test.
1537
1538 2003-07-24  Nathan Myers  <ncm-nospam@cantrip.org>
1539
1540         * testsuite/23_containers/map_operators.cc: Conform to
1541         container requirement as value must be Assignable.
1542
1543 2003-07-23  Alexandre Oliva  <aoliva@redhat.com>
1544
1545         * acinclude.m4 (GLIBCXX_ENABLE_PCH): Rework test such that it
1546         tests not only generation of pch files, but also their use.
1547         * aclocal.m4, configure: Rebuilt.
1548
1549 2003-07-23  Steve Ellcey  <sje@cup.hp.com>
1550
1551         * config/cpu/hppa/atomicity.h: Change
1552         _GLIBCXX_INST_GLIBCXX_ATOMICITY_LOCK to _GLIBCXX_INST_ATOMICITY_LOCK
1553         to match misc-inst.cc
1554
1555 2003-07-23  Steve Ellcey  <sje@cup.hp.com>
1556
1557         * include/c_std/cmath.tcc: Use _GLIBCXX_ prefix on file guard.
1558         * include/c_std/std_cctype.h: Ditto.
1559         * include/c_std/std_cerrno.h: Ditto.
1560         * include/c_std/std_cfloat.h: Ditto.
1561         * include/c_std/std_climits.h: Ditto.
1562         * include/c_std/std_clocale.h: Ditto.
1563         * include/c_std/std_cmath.h: Ditto.
1564         * include/c_std/std_csetjmp.h: Ditto.
1565         * include/c_std/std_csignal.h: Ditto.
1566         * include/c_std/std_cstdarg.h: Ditto.
1567         * include/c_std/std_cstddef.h: Ditto.
1568         * include/c_std/std_cstdio.h: Ditto.
1569         * include/c_std/std_cstdlib.h: Ditto.
1570         * include/c_std/std_cstring.h: Ditto.
1571         * include/c_std/std_ctime.h: Ditto.
1572         * include/c_std/std_cwchar.h: Ditto.
1573         * include/c_std/std_cwctype.h: Ditto.
1574         * include/std/std_algorithm.h: Ditto.
1575         * include/std/std_bitset.h: Ditto.
1576         * include/std/std_complex.h: Ditto.
1577         * include/std/std_deque.h: Ditto.
1578         * include/std/std_fstream.h: Ditto.
1579         * include/std/std_functional.h: Ditto.
1580         * include/std/std_iomanip.h: Ditto.
1581         * include/std/std_ios.h: Ditto.
1582         * include/std/std_iosfwd.h: Ditto.
1583         * include/std/std_iostream.h: Ditto.
1584         * include/std/std_istream.h: Ditto.
1585         * include/std/std_iterator.h: Ditto.
1586         * include/std/std_limits.h: Ditto.
1587         * include/std/std_list.h: Ditto.
1588         * include/std/std_locale.h: Ditto.
1589         * include/std/std_map.h: Ditto.
1590         * include/std/std_memory.h: Ditto.
1591         * include/std/std_numeric.h: Ditto.
1592         * include/std/std_ostream.h: Ditto.
1593         * include/std/std_queue.h: Ditto.
1594         * include/std/std_set.h: Ditto.
1595         * include/std/std_sstream.h: Ditto.
1596         * include/std/std_stack.h: Ditto.
1597         * include/std/std_stdexcept.h: Ditto.
1598         * include/std/std_streambuf.h: Ditto.
1599         * include/std/std_string.h: Ditto.
1600         * include/std/std_utility.h: Ditto.
1601         * include/std/std_valarray.h: Ditto.
1602         * include/std/std_vector.h: Ditto.
1603
1604 2003-07-22  Doug Gregor  <dgregor@apple.com>
1605
1606         * include/bits/basic_string.h (basic_string::insert): Deprecate
1607         GNU extension.
1608
1609 2003-07-21  Benjamin Kosnik  <bkoz@redhat.com>
1610
1611         * scripts/testsuite_flags.in (--build-includes): Remove extraneous
1612         paths for libio.
1613         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc
1614         (test03): Include typeinfo for bad_cast.
1615         * testsuite/27_io/basic_ostream/sentry/char/3983-sstream.cc: Same.
1616         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
1617         * testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same.
1618
1619 2003-07-21  Doug Gregor  <dgregor@apple.com>
1620
1621         * include/bits/boost_concept_check.h:
1622         (_EqualityComparableConcept::__constraints): Remove != from the
1623         list of constraints; it is not listed in Table 28 of the C++98
1624         standard.
1625
1626 2003-07-18  Andreas Jaeger  <aj@suse.de>
1627
1628         * config/abi/sparc-linux-gnu/baseline_symbols.txt: New file.
1629         * config/abi/mips-linux-gnu/baseline_symbols.txt: New file.
1630         * config/abi/hppa-linux-gnu/baseline_symbols.txt: New file.
1631         * config/abi/x86_64-linux-gnu/baseline_symbols.txt: Regenerated.
1632
1633 2003-07-17  Benjamin Kosnik  <bkoz@redhat.com>
1634
1635         * config/linker-map.gnu: Add __moneypunct_cache, __timepunct_cache.
1636         * config/locale/generic/messages_members.h: Tweaks.
1637         * config/locale/generic/monetary_members.cc
1638         (moneypunct::_M_initialize_moneypunct): Use cache.
1639         (moneypunct::~moneypunct): Delete cache.
1640         * config/locale/generic/time_members.cc:
1641         (__timepunct::_M_initialize_timepunct): Use cache.
1642         * config/locale/generic/time_members.h:
1643         (__timepunct::~__timepunct): Delete cache.
1644         (__timepunct::__timepunct): Set cache.
1645         * config/locale/gnu/messages_members.h: Tweaks.
1646         * config/locale/gnu/monetary_members.cc:
1647         (moneypunct::_M_initialize_moneypunct): Use cache.
1648         (moneypunct::~moneypunct): Delete cache.
1649         * config/locale/gnu/time_members.cc:
1650         (__timepunct::_M_initialize_timepunct): Use cache.
1651         * config/locale/gnu/time_members.h:
1652         (__timepunct::~__timepunct): Delete cache.
1653         (__timepunct::__timepunct): Set cache.
1654         * include/bits/locale_facets.h (__timepunct_cache): New.
1655         (__moneypunct_cache): New.
1656         * include/bits/locale_facets.tcc: Tweak.
1657         * src/locale.cc (__timepunct::_S_timezones): Adjust for cache.
1658         * src/locale-inst.cc: Instantiate caches.
1659         * src/globals.cc: Add "C" caches.
1660         * src/localename.cc: Use external "C" caches.
1661
1662 2003-07-17  Phil Edwards  <pme@gcc.gnu.org>
1663
1664         * docs/doxygen/guide.html:  Fix typo.
1665
1666 2003-07-16  Benjamin Kosnik  <bkoz@redhat.com>
1667
1668         * include/ext/pod_char_traits.h: Add state template argument.
1669
1670 2003-07-16  Benjamin Kosnik  <bkoz@redhat.com>
1671
1672         * include/bits/locale_facets.h (__num_base::_S_atoms_in): Add -+xX.
1673         (num_get::_M_convert_int): To _M_insert_int.
1674         (num_get::_M_convert_float): To _M_insert_float.
1675         * include/bits/locale_facets.tcc (num_get::_M_extract_float):
1676         Use caches for ctype, num_get.
1677         (num_get::_M_extract_int): Same.
1678         (num_get::get(bool)): Same.
1679         (__verify_grouping): Use size_t.
1680         * src/locale-inst.cc: Update.
1681         * src/locale.cc: Adjust _S_atoms_in.
1682
1683 2003-07-16  Phil Edwards  <pme@gcc.gnu.org>
1684
1685         * docs/doxygen/mainpage.html:  Move building/writing instructions...
1686         * docs/doxygen/guide.html:  ...to here.  New file.
1687
1688 2003-07-16  Jonathan Wakely  <redi@gcc.gnu.org>
1689
1690         * docs/html/ext/howto.html: Update URL for SGI STL docs.
1691         * docs/html/faq/index.html: Same.
1692         * docs/html/faq/index.txt: Regenerate.
1693
1694 2003-07-16  Paolo Carlini  <pcarlini@unitus.it>
1695
1696         PR libstdc++/11528
1697         * include/bits/locale_facets.tcc (money_get::do_get):
1698         Strip only _leading_ zeros.
1699         * testsuite/22_locale/money_get/get/char/11528.cc: Add.
1700         * testsuite/22_locale/money_get/get/wchar_t/11528.cc: Add.
1701
1702 2003-07-16  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
1703
1704         * include/ext/hash_map (class hash_multimap): Remove extra
1705         semicolons from __glibcxx_class_requires3 entries.
1706         * include/ext/hash_set (class hash_set): Ditto.
1707         (class hash_multiset): Ditto.
1708
1709 2003-07-15  Petur Runolfsson  <peturr02@ru.is>
1710
1711         * include/bits/char_traits.h (char_traits<wchar_t>::move):
1712         Change last parameter from int_type to size_t.
1713
1714 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
1715
1716         * include/bits/stl_algo.h (includes, set_union, set_intersection,
1717         set_difference, set_symmetric_difference, max_element, min_element,
1718         next_permutation, prev_permutation, find_first_of, find_end):
1719         Document.
1720         * include/bits/stl_algobase.h (copy,copy_backward):  Clarify overlap
1721         restrictions in docs.
1722         * include/bits/stl_heap.h (push_heap, pop_heap, make_heap, sort_heap):
1723         Document.
1724         * docs/doxygen/doxygroups.cc (setoperations):  New group.
1725
1726 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
1727
1728         * include/bits/basic_string.h:  Document public functions.
1729         * docs/doxygen/TODO:  Update c21 todo.
1730
1731 2003-07-15  Jerry Quinn  <jlquinn@optonline.net>
1732
1733         * include/bits/stl_list.h:  Document more functions.
1734         * docs/doxygen/TODO:  Update c23 todo.
1735
1736 2003-07-14  Paolo Carlini  <pcarlini@unitus.it>
1737
1738         * config/locale/gnu/c_locale.h (__convert_from_v): One more
1739         qualification.
1740
1741 2003-07-14  Paolo Carlini  <pcarlini@unitus.it>
1742
1743         * include/bits/stl_tempbuf.h: Qualify free with std::.
1744         * src/locale.cc: Include <cstdlib>, qualify getenv.
1745
1746 2003-07-14  Paolo Carlini  <pcarlini@unitus.it>
1747
1748         * config/locale/gnu/c_locale.h (__convert_from_v): Include
1749         <cstdio>. Qualify names.
1750         * config/locale/generic/c_locale.h (__convert_from_v): Ditto.
1751
1752 2003-07-14  Paolo Carlini  <pcarlini@unitus.it>
1753             Nathan C. Myers  <ncm-nospam@cantrip.org>
1754
1755         PR libstdc++/11378
1756         * include/std/std_fstream.h (xsputn): Declare only.
1757         * include/bits/fstream.tcc (xsputn): Define, optimize for the
1758         always_noconv() case: when __n is sufficiently large flush
1759         the buffer and issue a direct write, if possible combining the
1760         two with writev in __basic_file<>::xsputn_2.
1761         * config/io/basic_file_stdio.h (__basic_file<>::xsputn_2):
1762         New, declare.
1763         * config/io/basic_file_stdio.cc (__basic_file<>::xsputn_2):
1764         Define.
1765         * acinclude.m4 (GLIBCXX_CHECK_WRITE): New macro, checking for
1766         the availability of writev in <sys/uio.h>.
1767         * configure.in: Call here.
1768         * acconfig.h: Add undef for the corresponding symbol.
1769         * aclocal.m4: Regenerate.
1770         * configure: Regenerate.
1771         * config.h.in: Regenerate.
1772         * testsuite/27_io/basic_filebuf/setbuf/char/3.cc: Tweak.
1773
1774         * include/std/std_fstream.h (sync): Constify a variable.
1775
1776 2003-07-14  Benjamin Kosnik  <bkoz@redhat.com>
1777
1778         * testsuite/27_io/ios_base/cons/assign_neg.cc: Fix line numbers.
1779         * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
1780
1781 2003-07-14  Gabriel Dos Reis  <gcc@integrable-solutions.net>
1782
1783         * config/locale/gnu/c_locale.h (__convert_from_v): Include
1784         <cstring> and <cstdlib>. Qualify names.
1785
1786 2003-07-13  Mark Mitchell  <mark@codesourcery.com>
1787
1788         * config/locale/generic/c_locale.h: Include <cstdlib> and
1789         <cstring>.
1790         * include/bits/boost_concept_check.h: Add this-> to unqualified
1791         method calls.
1792         * include/bits/deque.tcc: Likewise.
1793         * include/bits/locale_facets.h : Likewise.
1794         * include/bits/ostream.tcc: Likewise.
1795         * include/bits/stl_algo.h: Likewise.
1796         * include/bits/stl_bvector.h: Likewise.
1797         * include/bits/stl_deque.h: Likewise.
1798         * include/bits/stl_list.h: Likewise.
1799         * include/bits/stl_tree.h: Likewise.
1800         * include/bits/stl_vector.h: Likewise.
1801         * include/bits/vector.tcc: Likewise.
1802         * include/ext/rope: Likewise.
1803         * include/ext/ropeimpl.h: Likewise.
1804         * include/ext/stdio_filebuf.h: Likewise.
1805
1806 2003-07-11  Jerry Quinn  <jlquinn@optonline.net>
1807
1808         * include/bits/basic_ios.h (copyfmt): Document.
1809         * include/bits/ios_base.h (event, event_callback, register_callback,
1810         xalloc, iword, pword):  Document.
1811         (imbue, ~ios_base): Update docs on callbacks.
1812
1813 2003-07-11  Phil Edwards  <pme@gcc.gnu.org>
1814
1815         * acinclude.m4 (GLIBCC_ENABLE_SYMVERS):  Tweak comments.  Add
1816         warning messages if the environment cannot support symbol versioning.
1817         (port_specific_symbol_file):  It's plural, add an 's' on the end.
1818         * configure.host:  Likewise.
1819         * src/Makefile.am:  Likewise.
1820         * config/linker-map.gnu:  Remove one semicolon, heh.
1821         * scripts/extract_symvers:  Don't assume useful 'export' syntax.
1822         Set LANG as well as LC_ALL for possibly-broken sort(1)s.
1823         * aclocal.m4, configure, src/Makefile.in:  Regenerated.
1824
1825 2003-07-09  Benjamin Kosnik  <bkoz@redhat.com>
1826
1827         * include/bits/locale_facets.tcc: Use function object for
1828         __use_cache instead of template function. Partially specialize for
1829         __numpunct<_CharT>.
1830         * include/bits/locale_classes.h: Update friend declaration for
1831         __use_cache.
1832         (_M_install_cache): No throw exception specs.
1833         * src/locale.cc: Remove __use_cache specializations.
1834         * include/ext/pod_char_traits.h (length): Tweak.
1835         * include/bits/locale_facets.h (__numpunct_cache): Remove
1836         char_type typedef.
1837         * testsuite/testsuite_hooks.h (pod_unsigned_int): Remove.
1838         (pod_long): Remove.
1839         * testsuite/22_locale/numpunct/members/char/cache_1.cc: New.
1840         * testsuite/22_locale/numpunct/members/char/cache_2.cc: New.
1841         * testsuite/22_locale/numpunct/members/wchar_t/cache_1.cc: New.
1842         * testsuite/22_locale/numpunct/members/wchar_t/cache_2.cc: New.
1843         * testsuite/22_locale/numpunct/members/pod/1.cc: New.
1844         * testsuite/22_locale/numpunct/members/pod/2.cc: New.
1845
1846 2003-07-09  Jerry Quinn  <jlquinn@optonline.net>
1847
1848         * src/ios.cc (_M_grow_words):  Fix spelling.
1849
1850 2003-07-09  Gawain Bolton  <gp.bolton@computer.org>
1851
1852         * include/bits/stl_tree.h: Move larger member functions in
1853         _Rb_tree_base_iterator and _Rb_tree_node to...
1854         * src/stl_tree.cc: Here.
1855         * src/Makefile.in: Add stl_tree.cc.
1856         * src/Makefile.in: Regenerated.
1857         * config/linker-map.gnu: Add symbols here.
1858
1859 2003-07-08  Benjamin Kosnik  <bkoz@redhat.com>
1860
1861         * testsuite/ext/pod_char_traits.cc: New.
1862         * include/ext/pod_char_traits.h: New.
1863         * include/Makefile.am (ext_headers): Add pod_char_traits.h.
1864         * include/Makefile.in: Regenerate.
1865         * docs/html/21_strings/howto.html: Update.
1866
1867 2003-07-08  Gawain Bolton  <gp.bolton@computer.org>
1868
1869         * testsuite/performance/list_create_fill_sort.cc: New.
1870
1871 2003-07-08  Benjamin Kosnik  <bkoz@redhat.com>
1872
1873         * config/locale/generic/numeric_members.cc: Correct type info.
1874         * config/locale/gnu/numeric_members.cc: Same.
1875         * include/bits/locale_facets.h: Same.
1876
1877         * include/bits/char_traits.h: Correct spacing.
1878
1879         * src/locale.cc: Wrap to 80 col.
1880
1881 2003-07-07  Paolo Carlini  <pcarlini@unitus.it>
1882
1883         * include/std/std_complex.h: Partially revert last
1884         changes: cmath functions must not be qualified.
1885
1886 2003-07-06  Phil Edwards  <pme@gcc.gnu.org>
1887
1888         * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS):  Do not test for binutils
1889         2.11 with globbing backport fix.
1890         * aclocal.m4, configure:  Regenerated.
1891
1892 2003-07-06  Paolo Carlini  <pcarlini@unitus.it>
1893
1894         * include/std/std_fstream.h (xsputn): Don't call _M_destroy_pback:
1895         if output is at all possible (!_M_reading), cannot be active.
1896
1897         * include/std/std_fstream.h: Tweak comments to doxygen style.
1898
1899 2003-07-06  Paolo Carlini  <pcarlini@unitus.it>
1900
1901         * include/bits/locale_classes.h: Fully qualify standard
1902         functions with std::, thus avoiding Koenig lookup.
1903         * include/bits/locale_facets.tcc: Likewise.
1904         * src/locale.cc: Likewise.
1905         * src/localename.cc: Likewise.
1906
1907 2003-07-06  Phil Edwards  <pme@gcc.gnu.org>
1908
1909         * include/bits/allocator_traits.h:  Fix doxygen markup.
1910         * include/ext/mt_allocator.h:  Likewise.
1911
1912 2003-07-06  Phil Edwards  <pme@gcc.gnu.org>
1913
1914         * testsuite/testsuite_hooks.h:  Guard against a missing unlink().
1915
1916 2003-07-05  Phil Edwards  <pme@gcc.gnu.org>
1917
1918         * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS):  Bump minimal version
1919         requirement.  Add port_specific_symbol_file variable.
1920         * configure.host:  Add docs for port_specific_symbol_file.
1921         Clean up try_cpu block for x86.
1922         * config/linker-map.gnu:  No more "last symbol can't have a
1923         semicolon" kaka.  Add hook for port-specific symbols.
1924         * src/Makefile.am:  Remove trailing whitespace.
1925         (libstdc++-symbol.ver):  Detect the presence of port-specific
1926         symbols, and add them accordingly.
1927
1928         * docs/html/17_intro/porting.texi:  Bring up to date.
1929
1930         * src/Makefile.in, aclocal.m4, configure,
1931         docs/html/17_intro/porting.html:  Regenerated.
1932
1933 2003-07-05  Phil Edwards  <pme@gcc.gnu.org>
1934
1935         * scripts/create_testsuite_files:  New file.
1936         * testsuite/Makefile.am (all-local, check-performance):  Use it.
1937         * testsuite/lib/libstdc++-v3-dg.exp (v3-computer-tests):  Remove.
1938         * testsuite/Makefile.in:  Regenerated.
1939
1940         * testsuite/performance/filebuf_sputc.cc:  Remove the temporary
1941         files at the end.
1942         * testsuite/performance/fstream_seek_write.cc:  Likewise.
1943         * testsuite/performance/ofstream_insert_float.cc:  Likewise.
1944         * testsuite/performance/ofstream_insert_int.cc:  Likewise.
1945         * testsuite/abi_check.cc (main):  Nicer spacing in usage output.
1946
1947 2003-07-05  Gawain Bolton  <gp.bolton@computer.org>
1948
1949         * include/bits/stl_list.h: Performance and memory usage
1950         improvements. In particular, the behaviour of the constructor and
1951         destructor as the list header node is no longer dynamically
1952         allocated/de-allocated.
1953         * include/bits/list.tcc: Likewise.
1954
1955 2003-07-05  Paolo Carlini  <pcarlini@unitus.it>
1956
1957         * include/std/std_complex.h: Fully qualify standard
1958         functions with std::, thus avoiding Koenig lookup.
1959         * include/std/std_memory.h: Likewise.
1960         * include/std/std_valarray.h: Likewise.
1961
1962 2003-07-05  Gawain Bolton  <gp.bolton@computer.org>
1963
1964         * include/bits/stl_tree.h: _Rb_tree_rebalance():  Add local
1965           variable for grandparent and use const
1966
1967 2003-07-05  David Billinghurst <David.Billinghurst@riotinto.com>
1968
1969         * testsuite/27_io/basic_filebuf/close/char/4879.cc: xfail on cygwin
1970         * testsuite/27_io/basic_filebuf/close/char/9964.cc: Ditto
1971         * testsuite/27_io/basic_filebuf/open/char/9507.cc: Ditto
1972         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc: Ditto
1973         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Ditto
1974         * testsuite/27_io/objects/char/7.cc: Ditto
1975         * testsuite/27_io/objects/char/9661-1.cc: Ditto
1976
1977 2003-07-05  Paolo Carlini  <pcarlini@unitus.it>
1978
1979         * include/std/std_bitset.h: Fully qualify standard
1980         functions with std::, thus avoiding Koenig lookup.
1981
1982         * include/std/std_fstream.h: Change comment to doxygen style.
1983
1984 2003-07-05  Phil Edwards  <pme@gcc.gnu.org>
1985
1986         * include/std/std_limits.h:  More CPP->CXX changes.
1987         * scripts/check_survey.in:  Likewise.
1988
1989 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
1990
1991         Move from CPP to CXX.
1992         * include/bits/c++config: Move to GLIBCXX from GLIBCPP.
1993         * testsuite/Makefile.am: Same.
1994         * testsuite/Makefile.in: Regenerate.
1995         * po/Makefile.am: Same.
1996         * po/Makefile.in: Regenerate.
1997         * libsupc++/Makefile.am: Same.
1998         * libsupc++/Makefile.in: Regenerate.
1999         * libmath/Makefile.am: Same.
2000         * libmath/Makefile.in: Regenerate.
2001         * include/Makefile.am: Same.
2002         * include/Makefile.in: Regenerate.
2003         * src/Makefile.am: Same.
2004         * src/Makefile.in: Regenerate.
2005         * acconfig.h: Same.
2006         * configure.host: Same.
2007         * configure.in: Same.
2008         * configure: Regenerate.
2009         * acinclude.m4: Same.
2010         * aclocal.m4: Same.
2011         * src: Change all files in this directory.
2012         * testsuite: Same.
2013         * include: Same, standardize include guards.
2014         * config: Same.
2015         * libsupc++: Same.
2016
2017 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
2018
2019         * testsuite/22_locale/collate/compare/wchar_t/2.cc
2020         * testsuite/22_locale/collate/compare/wchar_t/wrapped_env.cc
2021         * testsuite/22_locale/collate/compare/wchar_t/wrapped_locale.cc
2022         * testsuite/22_locale/collate/hash/wchar_t/2.cc
2023         * testsuite/22_locale/collate/hash/wchar_t/wrapped_env.cc
2024         * testsuite/22_locale/collate/hash/wchar_t/wrapped_locale.cc
2025         * testsuite/22_locale/collate/transform/wchar_t/2.cc
2026         * testsuite/22_locale/collate/transform/wchar_t/wrapped_env.cc
2027         * testsuite/22_locale/collate/transform/wchar_t/wrapped_locale.cc:
2028         XFAIL on all targets.
2029
2030 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2031
2032         * acinclude.m4 (GLIBCPP_ENABLE_PCH): Fix missed variable.
2033         * aclocal.m4: Regenerate.
2034         * configure: Regenerate.
2035
2036 2003-07-04  Jerry Quinn  <jlquinn@optonline.net>
2037
2038         * include/bits/locale_facets.tcc (__int_to_char): Move common case
2039         to the top.
2040
2041 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2042             Petur Runolfsson  <peturr02@ru.is>
2043
2044         * config/io/basic_file_stdio.cc: Revert.
2045
2046 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2047
2048         * include/bits/deque.tcc: Fully qualify standard
2049         functions with std::, thus avoiding Koenig lookup.
2050         * include/bits/gslice_array.h: Likewise.
2051         * include/bits/indirect_array.h: Likewise.
2052         * include/bits/list.tcc: Likewise.
2053         * include/bits/mask_array.h: Likewise.
2054         * include/bits/slice_array.h: Likewise.
2055
2056 2003-07-04  Gawain Bolton  <gbolton@free.fr>
2057
2058         * include/bits/stl_tree.h: Performance and memory usage
2059         improvements.
2060
2061 2003-07-04  H.J. Lu <hongjiu.lu@intel.com>
2062
2063         * Makefile.am: Replace PWD with PWD_COMMAND.
2064         * Makefile.in: Regenerated.
2065         * docs/html/Makefile: Likewise.
2066
2067 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2068
2069         * include/bits/valarray_array.h: Fully qualify standard
2070         functions with std::, thus avoiding Koenig lookup.
2071         * include/bits/vector.tcc: Likewise.
2072
2073 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2074
2075         * include/Makefile.am: Update target_ to host_.
2076         * include/Makefile.in: Regenerate.
2077         * src/Makefile.am: Same.
2078         * src/Makefile.in: Regenerate.
2079
2080         * config/os/gnu-linux/os_defines.h: Remove glibc-2.0 support.
2081
2082 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2083
2084         * acinclude.m4 (GLIBCPP_ENABLE_DEBUG_FLAGS): To
2085         --enable-libstdcxx-debug-flags.
2086         (GLIBCPP_ENABLE_DEBUG_FLAGS): To --enable-libstdcxx-debug.
2087         (GLIBCPP_ENABLE_PCH): To --enable-libstdcxx-pch.
2088         * aclocal.m4: Regenerate.
2089         * configure: Same.
2090         * docs/html/configopts.html: Update.
2091
2092 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2093
2094         Revert the fix for libstdc++/11378.
2095
2096 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2097
2098         PR libstdc++/11378
2099         * include/std/std_fstream.h (xsputn): In the unbuffered case,
2100         provided always_noconv(), issue directly _M_file.xsputn.
2101         * testsuite/performance/filebuf_unbuf_sputn.cc: New.
2102
2103 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2104
2105         * include/bits/stl_list.h: Fully qualify standard
2106         functions with std::, thus avoiding Koenig lookup.
2107         * include/bits/stl_queue.h: Likewise.
2108         * include/bits/stl_raw_storage_iter.h: Likewise.
2109         * include/bits/stl_tempbuf.h: Likewise.
2110         * include/bits/stl_tree.h: Likewise.
2111         * include/bits/stl_uninitialized.h: Likewise.
2112         * include/bits/stl_vector.h: Likewise.
2113         * include/ext/rope: Change includes order.
2114
2115 2003-07-04  Benjamin Kosnik  <bkoz@redhat.com>
2116
2117         * configure.host (fpos_include_dir): Fix.
2118
2119 2003-07-04  Paolo Carlini  <pcarlini@unitus.it>
2120
2121         * include/bits/stl_heap.h: Fully qualify standard
2122         functions with std::, thus avoiding Koenig lookup.
2123         * include/bits/stl_iterator_base_funcs.h: Likewise.
2124
2125         * include/bits/stl_algo.h: Qualify __iterator_category too.
2126         * include/bits/stl_algobase.h: Likewise.
2127         * include/bits/stl_bvector.h: Likewise.
2128
2129         * include/bits/stl_algo.h: Don't qualify the pair type.
2130
2131 2003-07-03  Benjamin Kosnik  <bkoz@redhat.com>
2132
2133         * include/Makefile.am (target_headers): Add fpos.h
2134         (bits_headers): Remove.
2135         * include/Makefile.in: Regenerate.
2136         * configure.in: Add FPOS_INC_SRCDIR, substitute it.
2137         * configure: Regenerate.
2138         * configure.host: Add fpos_include_dir.
2139         * config/os/gnu-linux/fpos.h: New.
2140         * config/os/generic/fpos.h: Add.
2141         * include/bits/fpos.h: Remove.
2142
2143         * config/io/c_io_stdio.h: Remove fpos_t typedef.
2144
2145         * include/bits/fstream.tcc: Tweaks.
2146         * include/std/std_fstream.h: Same.
2147
2148         * testsuite/27_io/fpos/1.cc (test01): Uncomment. Move to...
2149         * testsuite/27_io/fpos/mbstate_t/1.cc: ...here.
2150         * testsuite/27_io/fpos/mbstate_t/2.cc: Same.
2151         * testsuite/27_io/fpos/mbstate_t/3.cc: Same.
2152         * testsuite/27_io/fpos/1.cc: New.
2153
2154 2003-07-03  Benjamin Kosnik  <bkoz@redhat.com>
2155             Petur Runolfsson  <peturr02@ru.is>
2156
2157         * include/std/std_streambuf.h: Remove _M_pos.
2158         * config/io/basic_file_stdio.h: Use seekpos instead of seekoff.
2159         * config/io/basic_file_stdio.cc: Same, use fseek instead of lseek,
2160         use fread/fwrite instead of read/write.
2161         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-2.cc: Fix.
2162         * testsuite/27_io/basic_filebuf/sputn/char/9339.cc: Close filebufs
2163         before reading again.
2164         * testsuite/27_io/objects/char/6.cc: Tweak.
2165
2166 2003-07-03  David Edelsohn  <edelsohn@gnu.org>
2167
2168         * testsuite/22_locale/num_put/put/char/7.cc: Guard with
2169         _GLIBCPP_USE_WCHAR_T.
2170
2171 2003-07-02  Paolo Carlini  <pcarlini@unitus.it>
2172
2173         * include/bits/basic_string.tcc (_M_replace_aux): Constify
2174         __n1 and __off1.
2175
2176 2003-07-02  Paolo Carlini  <pcarlini@unitus.it>
2177
2178         * include/bits/stl_bvector.h: Fully qualify standard
2179         functions with std::, thus avoiding Koenig lookup.
2180         * include/bits/stl_construct.h: Likewise.
2181         * include/bits/stl_deque.h: Likewise.
2182
2183 2003-07-02  Paolo Carlini  <pcarlini@unitus.it>
2184
2185         * testsuite/22_locale/num_put/put/char/7.cc: Include
2186         <testsuite_hooks.h>, tweak.
2187         * testsuite/22_locale/num_put/put/wchar_t/7.cc: Likewise.
2188
2189 2003-07-01  Phil Edwards  <pme@gcc.gnu.org>
2190
2191         * testsuite/Makefile.am (AM_MAKEFLAGS):  Set to -j1 (affects
2192         check* targets, but not libs/programs).
2193         * testsuite/Makefile.in:  Regenerate.
2194
2195 2003-07-01  Roger Sayle  <roger@eyesopen.com>
2196
2197         * acinclude.m4 (GLIBCPP_CHECK_STDLIB_SUPPORT): Fix typo in CXXFLAGS.
2198         (GLIBCPP_CHECK_MATH_SUPPORT): Likewise.
2199         * aclocal.m4: Regenerate.
2200         * configure: Regenerate.
2201
2202 2003-07-01  Benjamin Kosnik  <bkoz@redhat.com>
2203
2204         * acinclude.m4 (GLIBCPP_ENABLE_PCH): Fix obvious error.
2205         * aclocal.m4: Regenerated.
2206         * configure: Regenerated.
2207
2208 2003-07-01  Paolo Carlini  <pcarlini@unitus.it>
2209
2210         PR libstdc++/11389
2211         * include/bits/fstream.tcc (underflow): For encoding() == 0
2212         don't read more than __buflen chars.
2213         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-1.cc: New.
2214         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-2.cc: New.
2215         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-3.cc: New.
2216         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-4.cc: New.
2217
2218 2003-07-01  Jerry Quinn  <jlquinn@optonline.net>
2219
2220         * 22_locale/num_put/put/char/7.cc: New.
2221         * 22_locale/num_put/put/wchar_t/7.cc: New.
2222
2223 2003-06-30  Jerry Quinn  <jlquinn@optonline.net>
2224
2225         * src/locale.cc (__use_cache<numpunct>): Revert previous relocation.
2226         * include/bits/locale_facets.tcc (__use_cache<numpunct>): Ditto.
2227
2228 2003-06-30  Benjamin Kosnik  <bkoz@redhat.com>
2229
2230         * 27_io/basic_filebuf/seekoff/char/1-in.cc: New.
2231         * 27_io/basic_filebuf/seekoff/char/1-io.cc: New.
2232         * 27_io/basic_filebuf/seekoff/char/1-out.cc: New.
2233         * 27_io/basic_filebuf/seekoff/char/2-in.cc: New.
2234         * 27_io/basic_filebuf/seekoff/char/2-io.cc: New.
2235         * 27_io/basic_filebuf/seekoff/char/2-out.cc: New.
2236         * 27_io/basic_filebuf/seekoff/char/2.cc: Remove.
2237         * 27_io/basic_filebuf/seekoff/char/3-in.cc: New.
2238         * 27_io/basic_filebuf/seekoff/char/3-io.cc: Change.
2239         * 27_io/basic_filebuf/seekoff/char/3-out.cc: New.
2240         * 27_io/basic_filebuf/seekoff/char/4-io.cc: Remove.
2241         * 27_io/basic_filebuf/seekpos/char/1-in.cc: New.
2242         * 27_io/basic_filebuf/seekpos/char/1-io.cc: New.
2243         * 27_io/basic_filebuf/seekpos/char/1-out.cc: New.
2244         * 27_io/basic_filebuf/seekpos/char/2-in.cc: New.
2245         * 27_io/basic_filebuf/seekpos/char/2-io.cc: New.
2246         * 27_io/basic_filebuf/seekpos/char/2-out.cc: New.
2247         * 27_io/basic_filebuf/seekpos/char/2.cc: Change.
2248         * 27_io/basic_filebuf/seekpos/char/3-in.cc: New.
2249         * 27_io/basic_filebuf/seekpos/char/3-io.cc: Remove.
2250         * 27_io/basic_filebuf/seekpos/char/3-out.cc: New.
2251         * 27_io/basic_filebuf/seekpos/char/4-io.cc: Remove.
2252         * data/seekoff-1.tst: Remove.
2253         * data/seekoff-1io.tst: New.
2254         * data/seekoff-1out.tst: New.
2255         * data/seekoff-2.tst: Remove.
2256         * data/seekoff-2io.tst: New.
2257         * data/seekoff-2out.tst: New.
2258         * data/seekoff.txt
2259         * data/seekpos-1.tst: Remove.
2260         * data/seekpos-1io.tst: New.
2261         * data/seekpos-1out.tst: New.
2262         * data/seekpos-2.tst: Remove.
2263         * data/seekpos-2io.tst: New.
2264         * data/seekpos-2out.tst: New.
2265         * data/seekpos.txt: New.
2266
2267 2003-06-30  Jerry Quinn  <jlquinn@optonline.net>
2268
2269         * src/locale.cc (__use_cache<numpunct>): Move from here ...
2270         * include/bits/locale_facets.tcc (__use_cache<numpunct>): To
2271         here.
2272
2273 2003-06-30  Paolo Carlini  <pcarlini@unitus.it>
2274
2275         * include/bits/stl_algobase.h: Fully qualify standard
2276         functions with std::, thus avoiding Koenig lookup.
2277
2278 2003-06-30  Doug Gregor <dgregor@apple.com>
2279
2280         * include/bits/locale_facets.tcc (money_get::do_get): Avoid
2281         subscripting empty string.
2282
2283 2003-06-30  Phil Edwards  <pme@gcc.gnu.org>
2284
2285         * testsuite/Makefile.am (check-am):  Do not override.
2286         (baseline_symbols):  Declare as PHONY, so no need to 'touch' it.
2287         * testsuite/Makefile.in:  Regenerate.
2288
2289 2003-06-30  Doug Gregor <dgregor@apple.com>
2290
2291         * testsuite/24_iterators/insert_iterator.cc (test01, test02):
2292         Don't initialize an insert_iterator with a singular iterator.
2293
2294 2003-06-30  Benjamin Kosnik  <bkoz@redhat.com>
2295
2296         * acinclude.m4 (GLIBCPP_ENABLE_PCH): Add bits for --enable-pch.
2297         * aclocal.m4: Regenerate.
2298         * configure.in (GLIBCPP_CHECK_PCH): Move, change to
2299         GLIBCPP_ENABLE_PCH, default to yes.
2300         * configure: Regenerate.
2301         * docs/html/configopts.html: Add --enable-pch.
2302
2303 2003-06-30  Phil Edwards  <pme@gcc.gnu.org>
2304
2305         * testsuite/lib/libstdc++-v3-dg.exp:  Add comments.
2306         (libstdc++-v3-init):  Also set LD_RUN_PATH.
2307
2308 2003-06-30  Paolo Carlini  <pcarlini@unitus.it>
2309
2310         * include/std/std_streambuf.h (_M_mode): Unused by streambuf, move
2311         from here to filebuf and stringbuf.
2312         (~basic_streambuf()): Don't set _M_mode.
2313         (basic_streambuf()): Don't set _M_mode.
2314         * include/std/std_fstream.h (_M_mode): Move here, from streambuf.
2315         (~basic_filebuf()): Clean up.
2316         * include/bits/fstream.tcc (basic_filebuf()): Set _M_mode.
2317         * include/std/std_sstream.h (_M_mode): Move here, from streambuf.
2318         * testsuite/27_io/basic_streambuf/cons/char/1.cc: Don't set _M_mode.
2319         * testsuite/27_io/basic_streambuf/overflow/char/1.cc: Likewise.
2320         * testsuite/27_io/basic_streambuf/sgetc/char/1.cc: Likewise.
2321         * testsuite/27_io/basic_streambuf/sgetn/char/1.cc: Likewise.
2322         * testsuite/27_io/basic_streambuf/sputn/char/1.cc: Likewise.
2323
2324 2003-06-30  Paolo Carlini  <pcarlini@unitus.it>
2325
2326         * include/std/std_fstream.h (_M_underflow): Remove.
2327         (uflow): Remove, inherited from streambuf.
2328         (underflow): Only declare.
2329         * include/bits/fstream.tcc (_M_underflow): Rename to
2330         underflow, to which is equivalent for __bump == false,
2331         simplify.
2332         * include/std/std_sstream.h (_M_underflow): Remove.
2333         (uflow): Remove, inherited from streambuf.
2334         (underflow): Only declare.
2335         * include/bits/sstream.tcc (_M_underflow): Rename to
2336         underflow, to which is equivalent for __bump == false,
2337         simplify.
2338
2339 2003-06-29  Paolo Carlini  <pcarlini@unitus.it>
2340
2341         * include/bits/stl_algo.h: Fully qualify standard functions
2342         with std::, thus avoiding Koenig lookup.
2343
2344 2003-06-29  Paolo Carlini  <pcarlini@unitus.it>
2345
2346         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-1.cc:
2347         Improve type correctness-wise.
2348         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-2.cc:
2349         Likewise.
2350         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-3.cc:
2351         Likewise.
2352         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-4.cc:
2353         Likewise.
2354
2355 2003-06-29  Paolo Carlini  <pcarlini@unitus.it>
2356
2357         * include/std/std_streambuf.h (uflow): According to
2358         27.5.2.4.3,p16, don't check gptr() < egptr().
2359
2360 2003-06-28  Paolo Carlini  <pcarlini@unitus.it>
2361
2362         PR libstdc++/9875
2363         * include/bits/fstream.tcc (seekoff): Fix for encoding() > 0.
2364         (seekpos): Likewise.
2365         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/9875_seekoff.cc:
2366         New test.
2367         * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9875_seekpos.cc:
2368         New test.
2369
2370 2003-06-27  Benjamin Kosnik  <bkoz@redhat.com>
2371
2372         * testsuite/testsuite_performance.h (__gnu_cxx_test): Change
2373         output name to libstdc++-v3-performance.sum.
2374         * testsuite/Makefile.am (CLEANFILES): Remove .performance.
2375         * testsuite/Makefile.in: Regenerate.
2376
2377 2003-06-27  Matthias Klose  <doko@debian.org>
2378
2379         * testsuite/Makefile.am (check-abi, check-abi-verbose): Save
2380         output of abi-check in libstdc++-v3-abi.sum.
2381         * testsuite/Makefile.in: Regenerate.
2382
2383 2003-06-27  Krister Walfridsson  <cato@df.lth.se>
2384
2385         * config/os/bsd/netbsd/ctype_noninline.h
2386         (_C_ctype_): Declare.
2387         (ctype<char>::classic_table): Return _C_ctype_ + 1.
2388         (ctype<char>::ctype): Use classic_table.
2389
2390 2003-06-27  Paolo Carlini  <pcarlini@unitus.it>
2391             Nathan C. Myers  <ncm-nospam@cantrip.org>
2392
2393         PR libstdc++/9178
2394         * include/bits/fstream.tcc (_M_underflow): Properly estimate
2395         the worst-case number of external bytes for a given get area.
2396         * testsuite/27_io/basic_filebuf/underflow/wchar_t/9178.cc: New.
2397
2398 2003-06-27  Paolo Carlini  <pcarlini@unitus.it>
2399             Petur Runolfsson  <peturr02@ru.is>
2400
2401         PR libstdc++/11305
2402         * include/bits/fstream.tcc (overflow): Properly estimate the
2403         worst-case number of external bytes for a given put area
2404         (by using codecvt::max_length()).
2405         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-1: New.
2406         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-2: New.
2407         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-3: New.
2408         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-4: New.
2409
2410 2003-06-27  Nathan Sidwell  <nathan@codesourcery.com>
2411
2412         * config/linker-map.gnu: Remove ; after __numpunct_cache.
2413
2414 2003-06-26  Benjamin Kosnik  <bkoz@redhat.com>
2415
2416         * include/bits/ios_base.h (ios_base::_M_getloc): Return reference
2417         to the imbued locale.
2418         * include/bits/locale_facets.tcc (num_put::_M_convert_int): Use
2419         _M_getloc.
2420         (num_put::_M_convert_float): Use.
2421
2422 2003-06-26  Benjamin Kosnik  <bkoz@redhat.com>
2423             Jerry Quinn  <jlquinn@optonline.net>
2424
2425         * config/linker-map.gnu: Add __numpunct_cache.
2426         * config/locale/gnu/numeric_members.cc
2427         (numpunct::_M_initialize_numpunct): Account for _M_data, fill in
2428         all elements for "C" locale.
2429         (numpunct::~numpunct): Delete _M_data.
2430         * config/locale/generic/numeric_members.cc: Same.
2431         * include/bits/basic_ios.tcc
2432         (basic_ios::init): Remove __locale_cache bits.
2433         (basic_ios::_M_cache_locale): Same.
2434         * include/bits/ios_base.h: Same. Tweaks.
2435         * include/bits/locale_classes.h: Tweaks. Reorder classes.
2436         (__use_cache): Make friends with _Impl, locale.
2437         (_Impl::_M_caches): Add.
2438         (_Impl::_M_install_cache): Add.
2439         * include/bits/locale_facets.h (__numpunct_cache): New.
2440         (numpunct): Encapsulate data members in __numpunct_cache member,
2441         _M_data. Adjust virtuals.
2442         (numpunct::numpunct): New ctor for the same.
2443         (__locale_cache_base): Remove.
2444         (__locale_cache): Remove.
2445         * include/bits/locale_facets.tcc (__use_cache): New function,
2446         specializations.
2447         (num_put::_M_convert_int, _M_convert_float, do_put): Use it.
2448         * src/globals.cc: Add cache_vec, numpunct_cache_c, numpunct_cache_w.
2449         * src/ios.cc (ios_base::ios_base): Remove __locale_cache.
2450         * src/locale-inst.cc: Same. Add __numpunct_cache.
2451         * src/locale.cc: Tweak inlines.
2452         (__use_cache): Define specializations.
2453         * src/localename.cc: Use global bits.
2454         (_Impl::~Impl): Deal with __numpunct_cache destruction.
2455         (_Impl::_Impl): Same. Pre-cache standard numpunct facets.
2456         (_Impl::_M_init_facet): Take into account __numpunct_cache.
2457         * testsuite/27_io/ios_base/cons/assign_neg.cc: Update line numbers.
2458         * testsuite/27_io/ios_base/cons/copy_neg.cc: Same.
2459
2460 2003-06-26  Nathan C. Myers  <ncm-nospam@cantrip.org>
2461             Paolo Carlini  <pcarlini@unitus.it>
2462
2463         * testsuite/performance/filebuf_copy.cc: New, testing char
2464         by char file copy.
2465
2466 2003-06-26  Paolo Carlini  <pcarlini@unitus.it>
2467             Nathan C. Myers  <ncm-nospam@cantrip.org>
2468
2469         * include/bits/fstream.tcc (_M_underflow): When the actual
2470         end of file is reached, set 'uncommitted' mode to allow a
2471         next write without an intervening seek (see C++98 27.8.1.1,2
2472         and C89 7.9.5.3).
2473         * testsuite/27_io/basic_filebuf/underflow/char/2.cc: New.
2474
2475 2003-06-25  Nathan C. Myers  <ncm-nospam@cantrip.org>
2476
2477         * include/bits/streambuf.tcc (sbumpc, sputbackc, sungetc,
2478         sputc): Move inline, from here...
2479         * include/std/std_streambuf.h: ... to here.
2480
2481         * include/std/std_streambuf.h (snextc, sbumpc, sgetc,
2482         sputbackc, sungetc, sputc): Use __builtin_expect.
2483
2484 2003-06-24  Phil Edwards  <pme@gcc.gnu.org>
2485
2486         * docs/doxygen/mainpage.html:  Use a useful title.
2487
2488 2003-06-24  Benjamin Kosnik  <bkoz@redhat.com>
2489
2490         * docs/html/documentation.html: Remove assignment info.
2491         * docs/html/17_intro/contribute.html: Edits.
2492         * docs/html/17_intro/libstdc++-assign.tx: Remove.
2493
2494         * docs/html/test.html: Update.
2495
2496         * README: Update.
2497
2498 2003-06-24  Benjamin Kosnik  <bkoz@redhat.com>
2499             Ulrich Drepper  <drepper@redhat.com>
2500
2501         * testsuite/testsuite_performance.h: Tweak mallinfo.
2502
2503 2003-06-24  Paolo Carlini  <pcarlini@unitus.it>
2504             Nathan C. Myers  <ncm-nospam@cantrip.org>
2505
2506         * include/std/std_fstream.h (_M_filepos): Remove.
2507         (_M_reading, _M_writing): New, encode the various I/O modes:
2508         'read', 'write' and 'uncommitted'.
2509         (sync): If there is something to flush, do it, then go to
2510         'uncommitted' mode.
2511         * include/bits/fstream.tcc (_M_set_buffer): Overhaul to deal
2512         with three different cases: __off > 0 (upon underflow),
2513         __off == 0 (upon overflow), __off == -1 (upon open, setbuf,
2514         seekoff/pos).
2515         (_M_underflow): Don't call overflow, set _M_reading to true
2516         on success, tweak.
2517         (pbackfail): Set _M_reading to true on pback creation, tweak.
2518         (overflow): Don't seek, deal with overflow in 'uncommitted' mode,
2519         set _M_writing to true on success, tweak.
2520         (seekoff): Simplify, set _M_reading, _M_writing to false, call
2521         _M_set_buffer(-1) ('uncommitted').
2522         (open, close, setbuf): Set _M_reading, _M_writing to false and
2523         call _M_set_buffer(-1), tweak.
2524         (basic_filebuf): Don't set _M_buf_unified.
2525         (_M_destroy_internal_buffer): Don't call setg and setp.
2526         * include/ext/stdio_filebuf.h (stdio_filebuf): Use _M_reading,
2527         _M_writing and _M_set_buffer(-1).
2528         * include/std/std_streambuf.h (_M_move_out_cur, _M_move_in_cur,
2529         _M_out_lim, _M_buf_unified): Remove.
2530         (basic_streambuf): Don't set _M_out_lim and _M_buf_unified.
2531         (setp): Don't set _M_out_lim.
2532         * testsuite/27_io/basic_filebuf/sbumpc/char/1-io.cc: Fix for
2533         the new logic ('read', 'write' and 'uncommitted' modes): e.g.,
2534         upon open the mode is 'uncommitted' and therefore the put area
2535         pointers are null.
2536         * testsuite/27_io/basic_filebuf/sbumpc/char/1-out.cc: Ditto.
2537         * testsuite/27_io/basic_filebuf/seekoff/char/3-io.cc: Ditto.
2538         * testsuite/27_io/basic_filebuf/seekpos/char/3-io.cc: Ditto.
2539         * testsuite/27_io/basic_filebuf/setbuf/char/1.cc: Ditto.
2540         * testsuite/27_io/basic_filebuf/sgetc/char/1-io.cc: Ditto.
2541         * testsuite/27_io/basic_filebuf/sgetc/char/1-out.cc: Ditto.
2542         * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: Ditto.
2543         * testsuite/27_io/basic_filebuf/sgetn/char/1-out.cc: Ditto.
2544         * testsuite/27_io/basic_filebuf/snextc/char/1-io.cc: Ditto.
2545         * testsuite/27_io/basic_filebuf/snextc/char/1-out.cc: Ditto.
2546         * testsuite/27_io/basic_filebuf/sputbackc/char/1-io.cc: Ditto.
2547         * testsuite/27_io/basic_filebuf/sputbackc/char/1-out.cc: Ditto.
2548         * testsuite/27_io/basic_filebuf/sputc/char/1-io.cc: Ditto.
2549         * testsuite/27_io/basic_filebuf/sputc/char/1-out.cc: Ditto.
2550         * testsuite/27_io/basic_filebuf/sputc/char/9701-2.cc: Ditto.
2551         * testsuite/27_io/basic_filebuf/sputn/char/1-io.cc: Ditto.
2552         * testsuite/27_io/basic_filebuf/sputn/char/1-out.cc: Ditto.
2553         * testsuite/27_io/basic_filebuf/sputn/char/9701-1.cc: Ditto.
2554         * testsuite/27_io/basic_filebuf/sungetc/char/1-io.cc: Ditto.
2555         * testsuite/27_io/basic_filebuf/sungetc/char/1-out.cc: Ditto.
2556
2557         * include/bits/fstream.tcc (showmanyc): Use only the
2558         documented derivation interface to basic_streambuf (gptr(),
2559         setg(), etc.) to work right with user specializations.
2560         * include/bits/streambuf.tcc (sbumpc, sputbackc, sungetc,
2561         sputc, xsgetn, xsputn, __copy_streambufs): Likewise.
2562         * include/std/std_streambuf.h (in_avail, sgetc, uflow, stossc):
2563         Likewise.
2564         * include/std/std_fstream.h (_M_create_pback, _M_destroy_pback,
2565         xsgetn): Likewise.
2566
2567 2003-06-23  Loren J. Rittle  <ljrittle@acm.org>
2568
2569         * configure.host (freebsd*): Set abi_baseline_pair.
2570         * config/abi/i386-freebsd4/baseline_symbols.txt: Update from 3.2
2571         (at or near first release) to 3.3.
2572         * config/abi/i386-freebsd5/baseline_symbols.txt: New file.
2573         * config/abi/alpha-freebsd5/baseline_symbols.txt: New file.
2574         * config/abi/sparc-freebsd5/baseline_symbols.txt: New file.
2575
2576         * include/ext/mt_allocator.h: Portability.
2577         * testsuite/testsuite_performance.h: Likewise.
2578
2579 2003-06-23  Benjamin Kosnik  <bkoz@redhat.com>
2580
2581         * docs/html/17_intro/libstdc++-assign.txt: Update address.
2582
2583         * testsuite/performance/ifstream_getline.cc: Fix.
2584
2585 2003-06-23  Doug Gregor <dgregor@apple.com>
2586
2587         * include/bits/boost_concept_check.h: Don't use _D or _R for type
2588         names.
2589
2590 2003-06-22  Paolo Carlini  <pcarlini@unitus.it>
2591             Nathan C. Myers  <ncm-nospam@cantrip.org>
2592
2593         * include/std/std_streambuf.h (_M_move_out_cur): _M_out_lim
2594         is now used only for filebuf, when _M_buf_unified is true.
2595         epgtr() plays the role of _M_out_lim but it's only updated
2596         upon overflow, underflow, uflow, seekoff/pos.
2597         * include/bits/sstream.tcc (_M_underflow): New, implements
2598         stringbuf::underflow and uflow.
2599         (seekoff, seekpos): Tweak, use  _M_update_egptr.
2600         * include/std/std_sstream.h (str): Rewrote, deal correctly
2601         with the new logic, in particular, when pptr() > egptr().
2602         (_M_sync): When __testout && !__testin set all the get area
2603         pointers to the current string end.
2604         (_M_update_egptr): New, internal function updating egptr()
2605         to the actual string end.
2606         (_M_underflow): New, declare.
2607         (underflow): Dispatch to _M_underflow(false).
2608         (uflow): Dispatch to _M_underflow(true).
2609
2610         * include/bits/sstream.tcc (pbackfail, overflow, seekoff,
2611         seekpos): Use only the documented derivation interface to
2612         basic_streambuf (gptr(), setg(), etc.) to work right with
2613         user specializations.
2614         * include/std/std_sstream.h (str, _M_sync): Likewise.
2615
2616 2003-06-20  Doug Gregor <dgregor@apple.com>
2617
2618         * testsuite/20_util/auto_ptr.cc: Don't dereference NULL auto_ptr
2619         * testsuite/21_strings/basic_string/replace/char/4.cc: Don't
2620         dereference end iterator.
2621         * testsuite/21_strings/basic_string/replace/wchar_t/4.cc: Same.
2622         * testsuite/22_locale/ctype/narrow/char/1.cc: Don't subscript with
2623         index equal to the length of a string.
2624         * testsuite/22_locale/ctype/narrow/char/2.cc: Same.
2625         * testsuite/22_locale/ctype/narrow/wchar_t/1.cc: Same.
2626         * testsuite/22_locale/ctype/narrow/wchar_t/2.cc: Same.
2627         * testsuite/22_locale/ctype/widen/char/1.cc: Same.
2628         * testsuite/22_locale/ctype/widen/wchar_t/1.cc: Same.
2629         * testsuite/23_containers/list_modifiers.cc: Don't dereference
2630         singular reverse iterator.
2631         * testsuite/23_containers/vector_bool.cc: Don't increment singular
2632         iterator.
2633         * testsuite/24_iterators/rel_ops.cc: Don't compare singular iterator.
2634
2635 2003-06-20  Doug Gregor <dgregor@apple.com>
2636
2637         * include/bits/basic_string.h (basic_string::replace): Dispatch
2638         _InputIterator version based on _Is_integer.
2639         * include/bits/basic_string.tcc (basic_string::replace):
2640         Renamed replace(iterator, iterator, size_type, _CharT) to
2641         _M_replace_aux.
2642         * testsuite/21_strings/basic_string/assign/char/1.cc (test01):
2643         Test basic_string::assign(_InputIterator, _InputIterator),
2644         which calls basic_string::replace(iterator, iterator,
2645         _Input_iterator, _InputIterator).
2646
2647 2003-06-20  Benjamin Kosnik  <bkoz@redhat.com>
2648
2649         * testsuite/testsuite_performance.h (resource_counter): Don't use
2650         mallinfo at the moment.
2651
2652 2003-06-20  Matthias Klose  <doko@debian.org>
2653
2654         * configure.host: Set try_cpu to target_cpu for existing
2655         baseline files.
2656
2657 2003-06-19  Andreas Jaeger  <aj@suse.de>
2658
2659         * testsuite/Makefile.am (extract_symvers): Revert accidental
2660         change.
2661         * testsuite/Makefile.in: Regenerate.
2662
2663         * configure.in: Pass MULTISUBDIR to testsuite/Makefile.
2664         * configure: Regenerated.
2665
2666 2003-06-19  Paolo Carlini  <pcarlini@unitus.it>
2667
2668         * include/std/std_sstream.h (_M_sync): Make non virtual.
2669
2670 2003-06-18  Benjamin Kosnik  <bkoz@redhat.com>
2671
2672         * testsuite/testsuite_performance.h (time_counter): New.
2673         (resource_counter): New.
2674         (report_performance): New.
2675         (start_counters): New.
2676         (stop_counters): New.
2677         (clear_counters): New.
2678         * testsuite/performance/allocator.cc: Instrument.
2679         * testsuite/performance/cout_insert_int.cc: Same.
2680         * testsuite/performance/complex_norm.cc: Same.
2681         * testsuite/performance/filebuf_sputc.cc: New.
2682         * testsuite/performance/fstream_seek_write.cc: Same.
2683         * testsuite/performance/ifstream_getline.cc: Same.
2684         * testsuite/performance/map_create_fill.cc: Same.
2685         * testsuite/performance/ofstream_insert_float.cc: Same.
2686         * testsuite/performance/ofstream_insert_int.cc: Same.
2687         * testsuite/performance/string_append.cc: Convert.
2688         * scripts/check_performance: New.
2689         * testsuite/Makefile.am (check-performance): New.
2690         (CLEANFILES): Add.
2691
2692 2003-06-18  Paolo Carlini  <pcarlini@unitus.it>
2693             Benjamin Kosnik  <bkoz@redhat.com>
2694
2695         * include/std/std_sstream.h (setbuf): Check __n >= 0.
2696         * include/bits/fstream.tcc (setbuf): Tweak.
2697
2698 2003-06-18  Paolo Carlini  <pcarlini@unitus.it>
2699
2700         * include/bits/sstream.tcc (seekoff): We can't seek beyond
2701         _M_out_lim, therefore _M_move_out_cur boils down to simply
2702         updating _M_out_cur.
2703         (seekpos): Likewise, clean up.
2704
2705 2003-06-18  Nathan C. Myers  <ncm-nospam@cantrip.org>
2706             Paolo Carlini  <pcarlini@unitus.it>
2707
2708         * include/bits/fstream.tcc (setbuf): Allow (__s, 1) too,
2709         simply equivalent to the unbuffered case (0, 0) as far as
2710         _M_buf_size is concerned.
2711
2712 2003-06-18  Andreas Jaeger  <aj@suse.de>
2713
2714         * testsuite/Makefile.am (new-abi-baseline): Create baseline
2715         directory.
2716         (baseline_file): Use baseline_dir.
2717         (baseline_dir): New.
2718         (mkinstalldirs): New.
2719
2720         * acinclude.m4: Rename baseline_file to baseline_dir, strip
2721         filename from baseline_dir.
2722
2723         * testsuite/Makefile.in: Regenerated.
2724         * Makefile.in: Regenerated.
2725         * aclocal.m4: Regenerated.
2726         * configure: Regenerated.
2727
2728 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
2729
2730         * configure.in: Missed check_survey bit.
2731         * configure: Regenerated.
2732
2733 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
2734
2735         * scripts: New.
2736         * config/abi/extract_symvers: Move to...
2737         * scripts/extract_symvers: ...here.
2738         * mkcheck.in: Move to..
2739         * scripts/check_survey.in: ...here.
2740         * testsuite_flags.in: Move to..
2741         * scripts/testsuite_flags.in: ...here.
2742         * configure.in: Change check and testsuite_flags locations.
2743         * configure: Regenerate.
2744         * testsuite/Makefile.am (current_symbols.txt): Change location.
2745         * testsuite/Makefile.in: Regenerate.
2746         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Modify
2747         location of testsuite_flags.
2748         * Makefile.am (check-script): Move..
2749         (check-script-install): Move...
2750         * testsuite/Makefile.am: ... here.
2751         * testsuite/Makefile.in: Regenerate.
2752         * Makefile.in: Regenerate.
2753
2754 2003-06-17  Benjamin Kosnik  <bkoz@redhat.com>
2755
2756         * config/abi/i486-linux-gnu/baseline_symbols.txt: Update to 3.3.0.
2757
2758 2003-06-16  Benjamin Kosnik  <bkoz@redhat.com>
2759
2760         * Makefile.am (check-abi): Move...
2761         (new-abi-baseline): Move...
2762         * testsuite/Makefile.am: ...here.
2763         (new-abi-baseline): Conditionalize.
2764         (check-abi): Conditionalize.
2765         (check-abi-verbose): New.
2766         * Makefile.in: Regenerate.
2767         * testsuite/Makefile.in: Regenerate.
2768         * configure.in: Consolidate testsuite configure bits.
2769         * acinclude.m4 (GLIBCPP_CONFIGURE_TESTSUITE): Same.
2770         * configure: Regenerate.
2771         * aclocal.m4: Regenerate.
2772         * testsuite/abi_check.cc: Add --check-verbose.
2773         Only output detailed information if --check-verbose.
2774
2775 2003-06-16  Andreas Jaeger  <aj@suse.de>
2776
2777         * testsuite/abi_check.cc: Create summary report.
2778
2779 2003-06-16  Paolo Carlini  <pcarlini@unitus.it>
2780
2781         * testsuite/27_io/basic_filebuf/sgetn/char/1-in.cc: Fix
2782         for systems with BUFSIZ != 8192.
2783         * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: Ditto.
2784         * testsuite/27_io/basic_filebuf/sgetn/char/1-out.cc:
2785         Minor tweaks.
2786
2787 2003-06-16  Andreas Jaeger  <aj@suse.de>
2788
2789         * acinclude.m4 (GLIBCPP_CONFIGURE_TESTSUITE): Make
2790         check-abi multilib aware.
2791         * aclocal.m4: Regenerate.
2792         * configure: Regenerate.
2793
2794 2003-06-16  Benjamin Kosnik  <bkoz@redhat.com>
2795             Andreas Jaeger  <aj@suse.de>
2796
2797         * configure.host: Set x86_64 abi_baseline pair correctly.
2798
2799 2003-06-16  Paolo Carlini  <pcarlini@unitus.it>
2800
2801         * testsuite/27_io/basic_filebuf/sungetc/char/1.cc: Split and
2802         fix for missing seeks between gets and puts into...
2803         * testsuite/27_io/basic_filebuf/sungetc/char/1-in.cc: New.
2804         * testsuite/27_io/basic_filebuf/sungetc/char/1-io.cc: New.
2805         * testsuite/27_io/basic_filebuf/sungetc/char/1-out.cc: New.
2806         * testsuite/27_io/basic_filebuf/sungetc/char/2-in.cc: New.
2807         * testsuite/27_io/basic_filebuf/sungetc/char/2-io.cc: New.
2808         * testsuite/27_io/basic_filebuf/sungetc/char/2-out.cc: New.
2809
2810 2003-06-15  Richard Henderson  <rth@redhat.com>
2811
2812         * config/linker-map.gnu: Export virtual function thunks for
2813         64-bit systems too.
2814
2815 2003-06-13  Benjamin Kosnik  <bkoz@redhat.com>
2816
2817         * config/abi/i686-pc-linux-gnu: To..
2818         * config/abi/i486-linux-gnu: ...this.
2819         * config/abi/alphaev67-unknown-linux-gnu: To..
2820         * config/abi/alpha-linux-gnu: ...this.
2821         * config/abi/ia64-unknown-linux-gnu: To...
2822         * config/abi/ia64-linux-gnu: ...this.
2823         * config/abi/x86_64-unknown-linux-gnu: To...
2824         * config/abi/x86_64-linux-gnu: ...this.
2825         * config/abi/i386-unknown-freebsd4: To...
2826         * config/abi/i386-freebsd4: ...this.
2827         * config/linker-map.gnu: Cleanups, move libsupc++ bits into
2828         CXXABI.
2829         * configure.host: abi_baseline_triplet to abi_baseline_pair.
2830         Simplify cpu bits so that abi_baseline_pair can use the same
2831         cpu configuration.
2832         * acinclude.m4: Same.
2833         * aclocal.m4: Regenerate.
2834         * configure.in: Can't get enable_abi_check to yes unless native.
2835         * configure: Regenerate.
2836
2837 2003-06-13  Paolo Carlini  <pcarlini@unitus.it>
2838
2839         * testsuite/27_io/basic_filebuf/seekoff/char/1.cc: Split and
2840         fix for missing seeks between gets and puts into...
2841         * testsuite/27_io/basic_filebuf/seekoff/char/3-io.cc: New.
2842         * testsuite/27_io/basic_filebuf/seekoff/char/4-io.cc: New.
2843         * testsuite/27_io/basic_filebuf/seekpos/char/1.cc: Same, into...
2844         * testsuite/27_io/basic_filebuf/seekpos/char/3-io.cc: New.
2845         * testsuite/27_io/basic_filebuf/seekpos/char/4-io.cc: New.
2846         * testsuite/27_io/basic_filebuf/sputbackc/char/1-io.cc: Fix
2847         for missing seeks between gets and puts.
2848         * testsuite/27_io/basic_filebuf/sputbackc/char/2-io.cc: Ditto.
2849         * testsuite/data/seekoff-1.tst: New.
2850         * testsuite/data/seekoff-2.tst: New.
2851         * testsuite/data/seekpos-1.tst: New.
2852         * testsuite/data/seekpos-2.tst: New.
2853
2854 2003-06-13  Nathan C. Myers <ncm-nospam@cantrip.org>
2855
2856         Avoid multi-processor bus contention on increment/decrement-and-
2857         test of the reference count in the empty-string object, by comparing
2858         addresses first, and never touching the reference count of the empty-
2859         string object.
2860         * include/bits/basic_string.h:
2861         (_S_empty_rep_storage): Move into basic_string<>::_Rep for use by its
2862         members.
2863         (_Rep::_S_empty_rep()): New accessor.
2864         (_Rep::_M_length, _Rep::_M_capacity, _Rep::_M_references): Move to
2865         a base class _Rep_base.
2866         (_Rep::_M_dispose, _Rep::_M_refcopy): Check for the empty string.
2867         (basic_string()): Change to use _M_refdata() in place of _M_refcopy(),
2868         since no longer must increment its refcount.
2869         * include/bits/basic_string.tcc:
2870         (_Rep::_M_destroy, _M_leak_hard): Check for the empty string and
2871         return immediately.  The former might be unnecessary.  The latter
2872         prevents begin() and end() from cloning it unnecessarily.
2873         (_S_construct(_InIterator, _InIterator, const _Alloc&,
2874         input_iterator_tag), _S_construct(_InIterator, _InIterator,
2875         const _Alloc&, forward_iterator_tag), _S_construct(size_type, _CharT,
2876         const _Alloc&)): Change to use _M_refdata() in place of _M_refcopy().
2877         (_M_mutate): Check for the empty string and treat it as shared.
2878         This is necessary here because _M_mutate is sometimes called with
2879         all-zero arguments; in all other uses of _M_is_shared, the test comes
2880         out right anyhow.
2881
2882 2003-06-12  Benjamin Kosnik  <bkoz@redhat.com>
2883
2884         * src/allocator-inst.cc: Explicitly instantiate.
2885         * include/ext/pool_allocator.h: Inhibit implicit instantiations.
2886         Tweaks.
2887         * config/linker-map.gnu: Add __pool_alloc bits. Tweaks.
2888
2889 2003-06-11  Benjamin Kosnik  <bkoz@redhat.com>
2890
2891         * acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Simplify.
2892         * aclocal.m4: Regenerate.
2893         * Makefile.am (SUBDIRS): Remove libio.
2894         * Makefile.in: Regenerate.
2895         * configure.in: Same.
2896         * configure: Regenerate.
2897         * config/io/basic_file_libio.cc: Remove.
2898         * config/io/basic_file_libio.h: Remove.
2899         * config/io/c_io_libio_codecvt.c: Remove.
2900         * config/io/c_io_libio.h: Remove.
2901         * libio/*: Remove.
2902         * src/Makefile.am: Same.
2903         * src/Makefile.in: Regenerate.
2904         * docs/html/configopts.html: Edits.
2905         * docs/html/explanations.html: Edits.
2906
2907 2003-06-11  Benjamin Kosnik  <bkoz@redhat.com>
2908
2909         * include/bits/stl_alloc.h (__debug_alloc): Move out.
2910         (__malloc_alloc): Same.
2911         (__pool_alloc): Same.
2912         (__new_alloc): Same.
2913         Rename to..
2914         * include/bits/allocator.h: ...this.
2915         * include/bits/stl_deque.h: Modify comment.
2916         * include/bits/stl_tree.h: Modify include.
2917         * include/std/std_memory.h: Same.
2918         * include/ext/rope: Same.
2919         * include/ext/slist: Same.
2920         * include/std/std_vector.h: Same.
2921         * include/std/std_stack.h: Same.
2922         * include/std/std_queue.h: Same.
2923         * include/std/std_list.h: Same.
2924         * include/std/std_deque.h: Same.
2925         * include/backward/alloc.h: Same.
2926         * include/ext/debug_allocator.h: New.
2927         * include/ext/malloc_allocator.h: New.
2928         * include/ext/pool_allocator.h: New.
2929         * include/ext/new_allocator.h: New.
2930         * include/bits/pthread_allocimpl.h: Remove.
2931         * include/bits/stl_pthread_alloc.h: Remove.
2932         * include/Makefile.am (ext_headers): Add.
2933         * include/Makefile.in: Regenerate.
2934         * src/stl-inst.cc: Use __gnu_cxx namespace.
2935         * src/stl-inst.cc: Move to...
2936         * src/allocator-inst.cc: Here.
2937         * src/Makefile.am (sources): Update.
2938         * src/Makefile.in: Regenerate.
2939         * config/linker-map.gnu: Remove __pool_alloc bits.
2940         * testsuite/ext/headers.cc: Add.
2941         * testsuite/ext/allocators.cc: Fixup.
2942
2943 2003-06-11  Stefan Olsson  <stefan@snon.net>
2944             Ola Rönnerup  <fnolis@home.se>
2945
2946         * include/Makefile.am (ext_headers): Add.
2947         * include/Makefile.in: Regenerate.
2948         * include/ext/mt_allocator.h: New file.
2949
2950 2003-06-10  Paolo Carlini  <pcarlini@unitus.it>
2951
2952         * include/bits/fstream.tcc (close): Clean up a bit.
2953
2954         * include/bits/streambuf.tcc (sbumpc): Clean up a bit.
2955
2956         * include/std/std_fstream.h (_M_destroy_pback): _M_pback_cur_save
2957         - the saved _M_in_cur, that is - cannot be null.
2958         (sync): Constify a variable.
2959
2960         * include/std/std_streambuf.h: Tweak a comment.
2961         (in_avail): Constify a variable.
2962
2963 2003-06-10  Phil Edwards  <pme@gcc.gnu.org>
2964
2965         * docs/html/17_intro/BUGS:  Update from 2.90.8 snapshot.
2966         * docs/html/17_intro/CHECKLIST:  Bring up to date with respect to
2967         correctness of container::iterator typedefs.  Fix whitespace.
2968         * docs/html/20_util/howto.html, docs/html/ext/howto.html:  Add links
2969         to allocator docs.
2970         * docs/html/documentation.html:  Regenerate.
2971
2972         * include/bits/basic_string.h, include/bits/basic_string.tcc,
2973         include/bits/deque.tcc, include/bits/list.tcc, include/bits/stl_algo.h,
2974         include/bits/stl_algobase.h, include/bits/stl_bvector.h,
2975         include/bits/stl_deque.h, include/bits/stl_iterator_base_funcs.h,
2976         include/bits/stl_list.h, include/bits/stl_uninitialized.h,
2977         include/bits/stl_vector.h, include/bits/vector.tcc,
2978         include/ext/algorithm, include/ext/slist, include/std/std_bitset.h:
2979         Change _Iter names to _Iterator, and __pos to __position.
2980
2981         * include/bits/stl_relops.h, include/bits/stl_numeric.h,
2982         include/bits/stl_multiset.h, include/bits/stl_set.h:
2983         Remove emacs markers.
2984
2985         * include/bits/stl_threads.h (_STL_auto_lock):  Add __unused__.
2986
2987 2003-06-10  Paolo Carlini  <pcarlini@unitus.it>
2988
2989         * include/bits/fstream.tcc (overflow): According to
2990         27.5.2.4.5, overflow() returns not_eof(eof()).
2991         * testsuite/27_io/basic_filebuf/overflow/char/2.cc: New.
2992         * testsuite/27_io/basic_filebuf/overflow/char/2-unbuf.cc: Ditto.
2993
2994 2003-06-10  Paolo Carlini  <pcarlini@unitus.it>
2995
2996         * include/bits/fstream.tcc (_M_underflow): Check overflow return
2997         value; tweak slightly.
2998
2999 2003-06-09  Paolo Carlini  <pcarlini@unitus.it>
3000
3001         * include/bits/fstream.tcc (_M_underflow): Do not special
3002         case the unbuffered case, which really means simply a one char
3003         get area.
3004         (basic_filebuf): Initialize _M_buf_size.
3005         (setbuf): Unbuffered means _M_buf_size == 1, since only
3006         _M_buf_size - 1 == 0 chars are going to be used for the
3007         put area and 1 for the get area.
3008         * include/std/std_streambuf.h (_M_buf_size): Move to basic_filebuf.
3009         (~basic_streambuf): Tweak.
3010         (basic_streambuf): Do not initialize _M_buf_size.
3011         * include/std/std_fstream.h (_M_buf_size): Add from basic_streambuf.
3012         (~basic_filebuf): Tweak.
3013         (_M_set_buffer): Tweak, considering that _M_buf_size == 1 is the
3014         unbuffered situation (i.e., put area pointers NULL).
3015         * include/bits/streambuf.tcc (sbumpc): Clean up.
3016         * testsuite/27_io/basic_filebuf/sputbackc/char/1.cc: Split into...
3017         * testsuite/27_io/basic_filebuf/sputbackc/char/1-in.cc: New.
3018         * testsuite/27_io/basic_filebuf/sputbackc/char/1-io.cc: New.
3019         * testsuite/27_io/basic_filebuf/sputbackc/char/1-out.cc: New.
3020         * testsuite/27_io/basic_filebuf/sputbackc/char/2-in.cc: New.
3021         * testsuite/27_io/basic_filebuf/sputbackc/char/2-io.cc: New.
3022         * testsuite/27_io/basic_filebuf/sputbackc/char/2-out.cc: New.
3023
3024 2003-06-09  Phil Edwards  <pme@gcc.gnu.org>
3025
3026         * acinclude.m4:  Move all AM_CONDITIONAL calls out.
3027         (GLIBCPP_CONFIGURE):  Set defaults for variables used in AM_CONDITIONAL
3028         statements.
3029         * configure.in:  Centralize AM_CONDITIONALs so that they are always
3030         run.  Make use of GLIBCPP_IS_CROSS_COMPILING.
3031         * aclocal.m4, configure:  Regenerated.
3032
3033 2003-06-09  Paolo Carlini  <pcarlini@unitus.it>
3034
3035         * docs/html/ext/howto.html ('LWG Issues'):  Add issue 235.
3036
3037 2003-06-06  Nathan Myers  <ncm-nospam@cantrip.org>
3038
3039         * include/bits/stl_iterator.h
3040         (reverse_iterator::reverse_iterator()): Apply DR235: default
3041         constructor default-initializes data member.  Instantiated on a
3042         pointer type, the member has to end up equal to zero.
3043
3044 2003-06-06  Benjamin Kosnik  <bkoz@redhat.com>
3045
3046         * include/bits/stl_alloc.h: Cleanups.
3047         * include/ext/functional: Same.
3048         * include/ext/hash_map: Same.
3049         * include/ext/hash_set: Same.
3050         * include/ext/iterator: Same.
3051         * include/ext/memory: Same.
3052         * include/ext/numeric: Same.
3053         * include/ext/rb_tree: Same.
3054         * include/ext/ropeimpl.h: Same.
3055         * include/ext/slist: Same.
3056         * include/ext/stdio_filebuf.h: Same.
3057         * include/ext/stdio_sync_filebuf.h: Same.
3058         * include/ext/stl_rope.h: Move to...
3059         * include/ext/rope: ...here.
3060         * include/ext/stl_hash_fun.h: Move to...
3061         * include/ext/hash_fun.h: ...here.
3062         * include/ext/stl_hashtable.h: Move to...
3063         * include/ext/hashtable.h: ...here.
3064         * include/backward/hashtable.h: Reflect new names.
3065         * include/Makefile.am: Same.
3066         * include/Makefile.in: Regenerated.
3067
3068 2003-06-05  Benjamin Kosnik  <bkoz@redhat.com>
3069
3070         PR libstdc++/9024
3071         * include/bits/fstream.tcc (_M_underflow): Fix for unbuffered.
3072         * include/bits/stl_algobase.h: Tweak.
3073         * include/std/std_fstream.h: Move _M_buf_size to...
3074         * include/std/std_streambuf.h: ...here. Modify.
3075         * include/bits/streambuf.tcc: Same.
3076         * testsuite/testsuite_hooks.h: Tweak.
3077         * testsuite/testsuite_io.h (constraint_filebuf): New.
3078         * testsuite/27_io/basic_filebuf/sbumpc/char/1.cc: Split into...
3079         * testsuite/27_io/basic_filebuf/sbumpc/char/1-in.cc: New.
3080         * testsuite/27_io/basic_filebuf/sbumpc/char/1-io.cc: New.
3081         * testsuite/27_io/basic_filebuf/sbumpc/char/1-out.cc: New.
3082         * testsuite/27_io/basic_filebuf/sbumpc/char/2-in.cc: New.
3083         * testsuite/27_io/basic_filebuf/sbumpc/char/2-io.cc: New.
3084         * testsuite/27_io/basic_filebuf/sbumpc/char/2-out.cc: New.
3085         * testsuite/27_io/basic_filebuf/sgetc/char/1.cc: Split into...
3086         * testsuite/27_io/basic_filebuf/sgetc/char/1-in.cc: New.
3087         * testsuite/27_io/basic_filebuf/sgetc/char/1-io.cc: New.
3088         * testsuite/27_io/basic_filebuf/sgetc/char/1-out.cc: New.
3089         * testsuite/27_io/basic_filebuf/sgetc/char/2-in.cc: New.
3090         * testsuite/27_io/basic_filebuf/sgetc/char/2-io.cc: New.
3091         * testsuite/27_io/basic_filebuf/sgetc/char/2-out.cc: New.
3092         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc: Split into...
3093         * testsuite/27_io/basic_filebuf/sgetn/char/1-in.cc: New.
3094         * testsuite/27_io/basic_filebuf/sgetn/char/1-io.cc: New.
3095         * testsuite/27_io/basic_filebuf/sgetn/char/1-out.cc: New.
3096         * testsuite/27_io/basic_filebuf/sgetn/char/2.cc: Split into...
3097         * testsuite/27_io/basic_filebuf/sgetn/char/2-in.cc: New.
3098         * testsuite/27_io/basic_filebuf/sgetn/char/2-io.cc: New.
3099         * testsuite/27_io/basic_filebuf/sgetn/char/2-out.cc: New.
3100         * testsuite/27_io/basic_filebuf/sgetn/char/3.cc: New.
3101         * testsuite/27_io/basic_filebuf/snextc/char/1.cc: Split into...
3102         * testsuite/27_io/basic_filebuf/snextc/char/1-in.cc: New.
3103         * testsuite/27_io/basic_filebuf/snextc/char/1-io.cc: New.
3104         * testsuite/27_io/basic_filebuf/snextc/char/1-out.cc: New.
3105         * testsuite/27_io/basic_filebuf/snextc/char/2-in.cc: New.
3106         * testsuite/27_io/basic_filebuf/snextc/char/2-io.cc: New.
3107         * testsuite/27_io/basic_filebuf/snextc/char/2-out.cc: New.
3108         * testsuite/27_io/basic_filebuf/sputc/char/1.cc: Split into...
3109         * testsuite/27_io/basic_filebuf/sputc/char/1-in.cc: New.
3110         * testsuite/27_io/basic_filebuf/sputc/char/1-io.cc: New.
3111         * testsuite/27_io/basic_filebuf/sputc/char/1-out.cc: New.
3112         * testsuite/27_io/basic_filebuf/sputc/char/2.cc: Split into...
3113         * testsuite/27_io/basic_filebuf/sputc/char/2-in.cc: New.
3114         * testsuite/27_io/basic_filebuf/sputc/char/2-io.cc: New.
3115         * testsuite/27_io/basic_filebuf/sputc/char/2-out.cc: New.
3116         * testsuite/27_io/basic_filebuf/sputn/char/1.cc: Split into...
3117         * testsuite/27_io/basic_filebuf/sputn/char/1-in.cc: New.
3118         * testsuite/27_io/basic_filebuf/sputn/char/1-io.cc: New.
3119         * testsuite/27_io/basic_filebuf/sputn/char/1-out.cc: New.
3120         * testsuite/27_io/basic_filebuf/sputn/char/2-in.cc: New.
3121         * testsuite/27_io/basic_filebuf/sputn/char/2-io.cc: New.
3122         * testsuite/27_io/basic_filebuf/sputn/char/2-out.cc: New.
3123         * testsuite/data/sgetc.txt: New.
3124         * testsuite/data/sgetn.txt: New.
3125
3126 2003-06-05  Paolo Carlini  <pcarlini@unitus.it>
3127
3128         PR libstdc++/11095
3129         * include/bits/istream.tcc (operator>>(basic_istream&, _CharT*)):
3130         Deal with width() smaller than zero.
3131         * include/bits/ostream.tcc (operator<<(basic_ostream&, _CharT),
3132         operator<<(basic_ostream&, char), operator<<(basic_ostream&, const
3133         _CharT*), operator<<(basic_ostream<_CharT, _Traits>&, const
3134         char*), operator<<(basic_ostream<char, _Traits>&, const char*),
3135         operator<<(basic_ostream, const basic_string&)): Likewise.
3136
3137         * testsuite/27_io/basic_istream/extractors_character/char/
3138         (11095-i.cc, 11095-oa.cc, 11095-ob.cc, 11095-oc.cc): New.
3139         * testsuite/27_io/basic_ostream/inserters_character/char/
3140         (11095-oa.cc, 11095-ob.cc, 11095-oc.cc): New.
3141         * testsuite/27_io/basic_ostream/inserters_character/wchar_t/
3142         (11095-od.cc, 11095-oe.cc, 11095-of.cc): New.
3143
3144 2003-06-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
3145
3146         * acinclude.m4 (GLIBCPP_CHECK_PCH): Only set glibcpp_PCHFLAGS if
3147         .gch compilation works.
3148         * aclocal.m4, configure: Regenerate.
3149         * testsuite_flags.in (--build-cxx): Use glibcpp_PCHFLAGS to
3150         initialize PCHFLAGS.
3151
3152 2003-06-04  Paolo Carlini  <pcarlini@unitus.it>
3153
3154         * include/bits/basic_string.h (_M_fold, insert(iterator, _CharT),
3155         erase(iterator), erase(iterator, iterator), c_str,
3156         compare(const basic_string&)): Constify various variables.
3157         * include/bits/basic_string.tcc (_S_construct(_InIter, _InIter,
3158         const _Alloc&, input_iterator_tag), _M_destroy, _M_mutate,
3159         _S_create, resize, _M_replace, _M_replace_safe,
3160         append(const basic_string&), append(const basic_string&, size_type,
3161         size_type), append(const _CharT*, size_type), append(size_type,
3162         _CharT), operator+(const _CharT*, const basic_string&),
3163         operator+(_CharT, const basic_string&), replace(iterator, iterator,
3164         size_type, _CharT), find(const _CharT*, size_type, size_type),
3165         find(_CharT, size_type), rfind(const _CharT*, size_type, size_type),
3166         rfind(_CharT, size_type), compare(size_type, size_type,
3167         const basic_string&), compare(size_type, size_type,
3168         const basic_string&, size_type, size_type), compare(const _CharT*),
3169         compare(size_type, size_type, const _CharT*), compare(size_type,
3170         size_type, const _CharT*, size_type)): Likewise.
3171
3172 2003-06-03  Benjamin Kosnik  <bkoz@redhat.com>
3173
3174         * include/bits/fstream.tcc (pbackfail): Make a rarely taken
3175         'if' branch less obscure.
3176
3177 2003-06-02  Andrew Pinski  <pinskia@physics.uc.edu>
3178
3179         PR libstdc++/9815
3180         * config/cpu/i386/atomicity.h (__exchange_and_add): add intel
3181         asm case to asm.
3182         * config/cpu/i486/atomicity.h (__exchange_and_add): Likewise.
3183         (__atomic_add): likewise.
3184
3185 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3186
3187         * include/bits/sstream.tcc (pbackfail): Minor clean up and
3188         reformatting, consistent with basic_filebuf::pbackfail.
3189
3190 2003-06-02  Richard Kreckel  <Richard.Kreckel@GiNaC.DE>
3191
3192         PR libstdc++/11062
3193         * config/cpu/mips/atomicity.h:  Change __attribute__ ((unused)) to
3194         __attribute__ ((__unused__)).
3195         * config/os/aix/atomicity.h:  Likewise.
3196
3197 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3198
3199         PR libstdc++/9761
3200         * include/bits/fstream.tcc (pbackfail): If the pback buffer
3201         is already active don't try to store in it a second char.
3202         * testsuite/27_io/basic_filebuf/pbackfail/char/9761.cc: New.
3203
3204         * include/bits/fstream.tcc (pbackfail): Add unbuffered bits.
3205
3206 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3207
3208         * testsuite/27_io/basic_stringbuf/seekpos/char/3.cc: Tweak
3209         line spacing.
3210
3211 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3212
3213         * include/std/std_fstream.h (_M_destroy_pback): Use _M_in_beg
3214         instead of unnecessarily taking the address of _M_pback.
3215         (xsgetn): Simplify slightly for a single char pback buffer.
3216
3217 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3218
3219         * include/bits/sstream.tcc (seekoff): Remove four unnecessary
3220         variables and two 'if', clean up.
3221
3222 2003-06-02  Paolo Carlini  <pcarlini@unitus.it>
3223
3224         * include/bits/sstream.tcc (seekpos): Test against _M_out_lim
3225         not _M_out_end, since the former actually points to the string
3226         end (vs buffer end).
3227         * testsuite/27_io/basic_stringbuf/seekpos/char/3.cc: New.
3228
3229 2003-05-30  Phil Edwards  <pme@gcc.gnu.org>
3230
3231         * docs/doxygen/filter:  New file.
3232         * docs/doxygen/filter.sed:  New file.
3233         * docs/doxygen/run_doxygen:  Add g flag to sed substitutions.  Duh.
3234         * docs/doxygen/user.cfg.in (INPUT_FILTER):  Point to new filter.
3235         * docs/html/documentation.html:  Fix links to doxygen pages.
3236
3237 2003-05-30  Paolo Carlini  <pcarlini@unitus.it>
3238
3239         * include/bits/fstream.tcc (_M_convert_to_external): Don't
3240         check for __ilen > 0.
3241
3242 2003-05-29  Sylvain Pion  <Sylvain.Pion@mpi-sb.mpg.de>
3243
3244         PR libstdc++/10783
3245         * include/bits/stl_iterator.h (class __normal_iterator):
3246         Don't inherit from iterator, add missing typedefs.
3247
3248 2003-05-29  Paolo Carlini <pcarlini@unitus.it>
3249
3250         * testsuite/24_iterators/reverse_iterator.cc: Split up, as follows.
3251         * testsuite/24_iterators/reverse_iterator/1.cc: New.
3252         * testsuite/24_iterators/reverse_iterator/2.cc: New.
3253         * testsuite/24_iterators/reverse_iterator/3.cc: New, from
3254         PR libstdc++/10783.
3255
3256 2003-05-27  Steve Ellcey  <sje@cup.hp.com>
3257
3258         * config/os/hpux/os_defines.h: Define _LIBUNWIND_STD_ABI if we are
3259         on IA64 HP-UX.
3260         * libsupc++/eh_throw.cc: Don't call _Unwind_Resume_or_Rethrow if
3261         _LIBUNWIND_STD_ABI is set.
3262
3263 2003-05-26  Brendan Kehoe  <brendan@zen.org>
3264
3265         * include/bits/locale_facets.tcc (do_get): Honor $22.2.6.3.3/8 and
3266         make sure the number of digits required after the decimal-point
3267         (if any) is exactly the value returned by frac_digits().
3268         * testsuite/22_locale/money_get/get/char/9.cc: New.
3269         * testsuite/22_locale/money_get/get/wchar_t/9.cc: New.
3270
3271 2003-05-27  Jonathan Wakely  <redi@gcc.gnu.org>
3272
3273         * include/std/std_istream.h, include/std/std_ostream.h: Typo in
3274         comment.
3275
3276 2003-05-26  Benjamin Kosnik  <bkoz@redhat.com>
3277
3278         PR libstdc++/9339
3279         * include/std/std_fstream.h (basic_filebuf::_M_overflow): Remove.
3280         (_M_pback): No array necessary.
3281         * include/bits/fstream.tcc (basic_filebuf::_M_overflow): Add
3282         unbuffered case, coalesec into ...
3283         (basic_filebuf::overflow): ...this.
3284         * testsuite/27_io/basic_filebuf/sputn/char/9339.cc: New.
3285         * testsuite/27_io/basic_filebuf/sputc/char/2.cc: Unbuffered.
3286
3287 2003-05-24  Nathanael Nerode  <neroden@gcc.gnu.org>
3288
3289         * libsupc++/Makefile.am, libsupc++/cxxabi.h, libsupc++/del_op.cc,
3290         libsupc++/del_opnt.cc, libsupc++/del_opv.cc, libsupc++/del_opvnt.cc,
3291         libsupc++/eh_alloc.cc, libsupc++/eh_aux_runtime.cc,
3292         libsupc++/eh_catch.cc, libsupc++/eh_exception.cc,
3293         libsupc++/eh_globals.cc, libsupc++/eh_personality.cc,
3294         libsupc++/eh_term_handler.cc, libsupc++/eh_terminate.cc,
3295         libsupc++/eh_throw.cc, libsupc++/eh_type.cc,
3296         libsupc++/eh_unex_handler.cc, libsupc++/exception,
3297         libsupc++/new, libsupc++/new_handler.cc, libsupc++/new_op.cc,
3298         libsupc++/new_opnt.cc, libsupc++/new_opv.cc, libsupc++/new_opvnt.cc,
3299         libsupc++/pure.cc, libsupc++/tinfo.cc, libsupc++/tinfo2.cc,
3300         libsupc++/typeinfo, libsupc++/unwind-cxx.h, libsupc++/vec.cc:
3301         Replace "GNU CC" with "GCC".
3302
3303         * include/backward/new.h: Replace "GNU CC" with "GCC".
3304
3305 2003-05-22  Benjamin Kosnik  <bkoz@redhat.com>
3306
3307         PR libstdc++/3066.
3308         * configure.in: Switch target to host, don't assume newlib.
3309         (target_alias): Remove.
3310         * configure: Regenerate.
3311         * acinclude.m4: Same.
3312         * aclocal.m4: Regenerate.
3313         * configure.target: Same. Rename to...
3314         * configure.host: This.
3315
3316 2003-05-22  Paolo Carlini  <pcarlini@unitus.it>
3317
3318         * include/std/std_fstream.h (_S_pback_size): Remove definition.
3319         (_M_create_pback(), _M_destroy_pback()): Simplify for a single-char
3320         pback buffer.
3321         * include/bits/fstream.tcc (_S_pback_size): Remove declaration.
3322         * testsuite/27_io/basic_filebuf/3.cc: Remove explicit instantiation
3323         of _S_pback_size for systems with no COMDAT or weak support.
3324         * testsuite/27_io/basic_filebuf/seekoff/10132-2.cc: Likewise.
3325         * testsuite/27_io/basic_filebuf/seekpos/10132-3.cc: Likewise.
3326         * testsuite/27_io/basic_filebuf/underflow/10096.cc: Likewise.
3327         * testsuite/27_io/basic_fstream/3.cc: Likewise.
3328         * testsuite/27_io/basic_ifstream/3.cc: Likewise.
3329         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Likewise.
3330         * testsuite/27_io/basic_ofstream/3.cc: Likewise.
3331         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Likewise.
3332         * testsuite/27_io/basic_streambuf/3.cc: Likewise.
3333
3334 2003-05-22  Paolo Carlini  <pcarlini@unitus.it>
3335
3336         * include/bits/fstream.tcc (_M_underflow): Simplify:
3337         !__testout implies _M_filepos == _M_in_end, therefore
3338         the first _M_file.seekoff call is never issued.
3339
3340 2003-05-22  Benjamin Kosnik  <bkoz@redhat.com>
3341
3342         * configure.in: Sort cross table.
3343         * configure: Regenerate.
3344
3345 2003-05-22  Brad Spencer  <spencer@infointeractive.com>
3346
3347         PR libstdc++/10106
3348         * configure.in: Add Solaris cross bits.
3349
3350 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3351
3352         * libstdc++-v3/config/os/mingw32/os_defines.h
3353         (__GTHREAD_HIDE_WIN32API): Define to 1 by defualt.
3354         (NOMINMAX): Define.  Update copyright year.
3355
3356 2003-05-21  Paolo Carlini  <pcarlini@unitus.it>
3357
3358         * include/std/std_fstream.h (_M_set_buffer): Fix indentation.
3359
3360 2003-05-21  Jonathan Wakely  <redi@gcc.gnu.org>
3361
3362         * docs/html/faq/index.html: Fix typo.
3363         * docs/html/faq/index.txt: Regenerate.
3364
3365 2003-05-21  Jonathan Wakely  <redi@gcc.gnu.org>
3366
3367         * docs/html/test.html: Fix markup.
3368
3369 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3370
3371         * libmath/stubs.c (hypot, hypotf, hypotl): Don't divide by
3372         zero.
3373         Update copyright year.
3374
3375 2003-05-20  Paolo Carlini  <pcarlini@unitus.it>
3376
3377         * testsuite/27_io/basic_filebuf/close/char/4.cc: Fix typo.
3378
3379 2003-05-20  Paolo Carlini  <pcarlini@unitus.it>
3380
3381         * testsuite/27_io/basic_filebuf/close/char/5.cc: New file,
3382         further testing that upon filebuf::close() 27.8.1.1,3 is enforced.
3383
3384 2003-05-20  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
3385
3386         * include/bits/stl_alloc.h (__default_alloc_template::_S_chunk_alloc):
3387         Cast via void* to avoid -Wcast-align warnings.
3388         (__default_alloc_template::_S_refill): Likewise.
3389
3390 2003-05-20  Benjamin Kosnik  <bkoz@redhat.com>
3391
3392         * testsuite/README: Move to...
3393         * docs/html/test.html: ...here. Add documentation.
3394         * docs/html/install.html: Move testing bits out..
3395         * docs/html/documentation.html: Add separate testing link.
3396         * testsuite/performance: Add.
3397         * testsuite/performance/allocator.cc: New.
3398         * testsuite/performance/complex_norm.cc: New.
3399         * testsuite/performance/cout_insert_int.cc: New.
3400         * testsuite/performance/fstream_seek_write.cc: New.
3401         * testsuite/performance/ifstream_getline.cc: New.
3402         * testsuite/performance/map_create_fill.cc: New.
3403         * testsuite/performance/ofstream_insert_float.cc: New.
3404         * testsuite/performance/ofstream_insert_int.cc: New.
3405         * testsuite/performance/string_append.cc: New.
3406         * testsuite/lib/libstdc++-v3-dg.exp (v3-compute-tests): Filter
3407         performance tests.
3408
3409 2003-05-20  Gabriel Dos Reis <gdr@integrable-solutions.net>
3410
3411         PR libstdc++/10689
3412         * include/std/std_complex.h (pow): Tidy.
3413
3414 2003-05-19  Paolo Carlini  <pcarlini@unitus.it>
3415
3416         * testsuite/27_io/basic_filebuf/close/char/4.cc: New file, testing
3417         that upon filebuf::close() 27.8.1.1,3 is enforced.
3418
3419 2003-05-15  Loren J. Rittle  <ljrittle@acm.org>
3420
3421         * testsuite/thread/pthread4.cc: Further tweak to avoid fini race.
3422
3423 2003-05-15  Paolo Carlini  <pcarlini@unitus.it>
3424             Nathan Myers  <ncm@cantrip.org>
3425
3426         * include/bits/fstream.tcc (_M_overflow): Rewrote to call
3427         _M_convert_to_external only once (_M_buf_size is now the size of
3428         the put area + 1 for the overflow char of a full area); call
3429         _M_set_buffer instead of _M_set_indeterminate.
3430         (setbuf): Don't accept a buffer smaller than 2 chars.
3431         (_M_underflow): Refill _M_buf_size - 1 chars; call _M_set_buffer,
3432         instead of _M_set_determinate.
3433         (open): Call _M_set_buffer, instead of _M_set_indeterminate.
3434         (seekoff): Likewise.
3435         * include/ext/stdio_filebuf.h (stdio_filebuf(int,
3436         std::ios_base::openmode, bool, size_t),
3437         stdio_filebuf(std::__c_file*, std::ios_base::openmode, size_t):
3438         Likewise.
3439         * include/std/std_fstream.h (_M_set_indeterminate): Remove.
3440         (_M_set_determinate): Rename as _M_set_buffer, _M_buf_size ->
3441         _M_buf_size - 1.
3442         * include/std/std_streambuf.h: Tweak _M_out_lim comment.
3443         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc: Tweak, taking
3444         into account that, for _M_buf_size == BUFSIZ == 8192, the size of
3445         the put area is now BUFSIZ - 1.
3446         * testsuite/ext/stdio_filebuf_2.cc: Tweak, taking into account
3447         that now the smallest _M_buf_size is 2 (still fails, for the same
3448         reason, with 3.2.3)
3449
3450 2003-05-14  Loren J. Rittle  <ljrittle@acm.org>
3451
3452         * testsuite/thread/pthread4.cc: Tweak test.
3453
3454 2003-05-13  Benjamin Kosnik  <bkoz@redhat.com>
3455
3456         * testsuite/27_io/ios_base/cons/copy_neg.cc: Remove
3457         excess errors dg marker, use dg-errors instead.
3458         * testsuite/27_io/ios_base/cons/assign_neg.cc: Same.
3459         * testsuite/20_util/auto_ptr_neg.cc: Same.
3460
3461 2003-05-12  Benjamin Kosnik  <bkoz@redhat.com>
3462
3463         * include/std/std_fstream.h (basic_filebuf::_M_codecvt): Add
3464         cached member.
3465         * include/bits/fstream.tcc (basic_filebuf::basic_filebuf):
3466         Initialize _M_codecvt.
3467         (basic_filebuf::imbue): Same.
3468         (basic_filebuf::showmanyc): Use it.
3469         (basic_filebuf::underflow): Use it.
3470         (basic_filebuf::_M_convert_to_external): Use it.
3471         (basic_filebuf::seekoff): Use it.
3472         (basic_filebuf::imbue): Use it, tweaks.
3473         * include/bits/localefwd.h (__check_facet): New.
3474         * include/bits/locale_classes.h: Tweaks.
3475         * include/bits/locale_facets.tcc: Tweaks.
3476         * include/bits/basic_ios.h (basic_ios::_M_check_facet): Remove.
3477         _M_fctype to _M_ctype, _M_fnumput to _M_num_put, _M_fnumget to
3478         _M_num_get. Change _M_check_facet to __check_facet. Tweaks.
3479         * include/bits/basic_ios.tcc: Same.
3480         * include/bits/istream.tcc: Same.
3481         * include/bits/ostream.tcc: Same.
3482         * include/std/std_streambuf.h: Same.
3483         * testsuite/27_io/basic_filebuf/imbue/char/2.cc: New.
3484         * testsuite/27_io/basic_filebuf/imbue/char/3.cc: New.
3485         * testsuite/27_io/basic_filebuf/imbue/wchar_t/1.cc: New.
3486         * testsuite/27_io/basic_filebuf/imbue/wchar_t/2.cc: New.
3487         * testsuite/27_io/basic_filebuf/imbue/wchar_t/3.cc: New.
3488         * testsuite/27_io/basic_filebuf/imbue/wchar_t/9322.cc: New.
3489
3490 2003-05-12  Paolo Carlini  <pcarlini@unitus.it>
3491
3492         * testsuite/27_io/basic_filebuf/sgetc/char/1.cc: Remove
3493         unnecessary includes and unused string literals.
3494         * testsuite/27_io/basic_filebuf/sputbackc/char/1.cc: Likewise.
3495         * testsuite/27_io/basic_filebuf/sputc/char/1.cc: Likewise.
3496         * testsuite/27_io/basic_filebuf/sputn/char/1.cc: Likewise.
3497         * testsuite/27_io/basic_filebuf/sungetc/char/1.cc: Likewise.
3498
3499 2003-05-12  Benjamin Kosnik  <bkoz@redhat.com>
3500
3501         * include/bits/fstream.tcc (_M_overflow): Remove unbuffered bits.
3502
3503 2003-05-12  Paolo Carlini  <pcarlini@unitus.it>
3504
3505         * include/std/std_fstream.h (_M_convert_to_external): Change
3506         to return bool, take two less streamsize parameters.
3507         * include/bits/fstream.tcc (_M_convert_to_external): Tweak
3508         consistently definition.
3509         (_M_overflow): Adjust call points.
3510
3511 2003-05-12  Benjamin Kosnik  <bkoz@redhat.com>
3512
3513         * testsuite/27_io/basic_filebuf/underflow/10096.cc: Add weak bits.
3514
3515 2003-05-11  Phil Edwards  <pme@gcc.gnu.org>
3516
3517         * testsuite/Makefile.am:  Properly quote /both/ LD_RUN_PATHs.
3518         * testsuite/Makefile.in:  Regenerate.
3519
3520 2003-05-11  Phil Edwards  <pme@gcc.gnu.org>
3521
3522         * testsuite/Makefile.am:  Properly quote LD_RUN_PATH.
3523         * testsuite/Makefile.in:  Regenerate.
3524
3525 2003-05-11  Gabriel Dos Reis <gdr@integrable-solutions.net>
3526
3527         PR libstdc++/3181
3528         * include/c_std/std_cmath.h: #include <bits/cpp_type_traits.h>
3529         (acos): Handle integer argument.
3530         (asin): Likewise.
3531         (atan): Likewise.
3532         (atan2): Likewise.
3533         (ceil): Likewise.
3534         (cos): Likewise.
3535         (cosh): Likewise.
3536         (exp): Likewise.
3537         (fabs): Likewise.
3538         (floor): Likewise.
3539         (frexp): Likewise.
3540         (ldexp): Likewise.
3541         (log): Likewise.
3542         (log10): Likewise.
3543         (sin): Likewise.
3544         (sinh): Likewise.
3545         (sqrt): Likewise.
3546         (tan): Likewise.
3547         (tanh): Likewise.
3548         * include/bits/cpp_type_traits.h (__are_same<>): New traits.
3549         (__enable_if): Likewise.
3550         * testsuite/26_numerics/cmath/overloads.C: New test.
3551
3552 2003-05-10  Petur Runolfsson  <peturr02@ru.is>
3553
3554         PR libstdc++/9027
3555         PR libstdc++/9520
3556         PR libstdc++/10096
3557         * include/bits/fstream.tcc (basic_file::_M_underflow):  Add generic
3558         implementation, based on old wchar_t specialization, add support
3559         for codecvt::in() return value of codecvt_base::noconv, remove
3560         _M_file.sys_ungetc() call.
3561         * include/std/std_fstream.h (basic_file::underflow,
3562         basic_file::uflow, basic_file::_M_underflow):  Remove
3563         specialization declarations, call _M_underflow from generic versions
3564         of underflow and uflow.
3565         * src/fstream.cc (basic_file::underflow, basic_file::uflow,
3566         basic_file::_M_underflow):  Remove specializations.
3567         * src/Makefile.am (sources):  Remove fstream.cc.
3568         * src/Makefile.in:  Regenerated.
3569         * testsuite/27_io/basic_filebuf/underflow/10096.cc:  New test.
3570         * testsuite/27_io/basic_filebuf/underflow/char/1.cc:  New test.
3571         * testsuite/27_io/basic_filebuf/underflow/char/9027.cc:  New test.
3572         * testsuite/27_io/basic_filebuf/underflow/wchar_t/9520.cc:  New test.
3573
3574 2003-05-10  Benjamin Kosnik  <bkoz@redhat.com>
3575
3576         * include/ext/stdio_filebuf.h (__stdio_filebuf): Remove stack
3577         buffer.
3578         * config/io/basic_file_stdio.h (__basic_file::xsgetn): Remove
3579         unbuffered bits.
3580         (__basic_file::xsputn): Same.
3581         (__basic_file::seekoff): Same.
3582         (__basic_file::seekpos): Same.
3583         (__basic_file::showmanyc): Same.
3584         * config/io/basic_file_stdio.cc: Same.
3585         * include/std/std_fstream.h: Same.
3586         * include/bits/fstream.tcc: Same.
3587         * src/fstream.cc: Same.
3588         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc (test05): Tidy.
3589
3590 2003-05-10  Petur Runolfsson  <peturr02@ru.is>
3591
3592         PR libstdc++/9520
3593         PR libstdc++/9661
3594         PR libstdc++/9662
3595         * include/ext/stdio_sync_filebuf.h:  New file.
3596         (basic_stdiobuf):  New.
3597         * include/Makefile.am (ext_headers): Add ext/stdio_sync_filebuf.h
3598         * include/Makefile.in: Regenerate.
3599         * include/bits/ios_base.h (Init::_S_create_buffers,
3600         Init::_S_destroy_buffers):  Remove declarations.
3601         * src/globals.cc (buf_cout_sync, buf_cin_sync, buf_cerr_sync,
3602         buf_wcout_sync, buf_wcin_sync, buf_wcerr_sync):  Define.
3603         * src/ios.cc (Init::_S_create_buffers,
3604         Init::_S_destroy_buffers):  Remove.
3605         (Init::Init):  Create and use syncronized buffers.
3606         (ios_base::sync_with_stdio):  Destroy syncronized buffers,
3607         create and install unsyncronized buffers.
3608         * testsuite/27_io/objects/char/10.cc:  New test.
3609         * testsuite/27_io/objects/char/9.cc:  New test.
3610         * testsuite/27_io/objects/char/9661-1.cc:  New test.
3611         * testsuite/27_io/objects/char/9661-2_xin.cc:  New test.
3612         * testsuite/27_io/objects/char/9661-2_xin.in:  New.
3613         * testsuite/27_io/objects/wchar_t/1.cc:  New test.
3614         * testsuite/27_io/objects/wchar_t/10.cc:  New test.
3615         * testsuite/27_io/objects/wchar_t/2.cc:  New test.
3616         * testsuite/27_io/objects/wchar_t/2523-1_xin.cc:  New test.
3617         * testsuite/27_io/objects/wchar_t/2523-1_xin.in:  New.
3618         * testsuite/27_io/objects/wchar_t/2523-2_xin.cc:  New test.
3619         * testsuite/27_io/objects/wchar_t/2523-2_xin.in:  New.
3620         * testsuite/27_io/objects/wchar_t/3045.cc:  New test.
3621         * testsuite/27_io/objects/wchar_t/3647.cc:  New test.
3622         * testsuite/27_io/objects/wchar_t/3_xin.cc:  New test.
3623         * testsuite/27_io/objects/wchar_t/3_xin.in:  New.
3624         * testsuite/27_io/objects/wchar_t/4_xin.cc:  New test.
3625         * testsuite/27_io/objects/wchar_t/4_xin.in:  New.
3626         * testsuite/27_io/objects/wchar_t/5.cc:  New test.
3627         * testsuite/27_io/objects/wchar_t/5268.cc:  New test.
3628         * testsuite/27_io/objects/wchar_t/5280_xin.cc:  New test.
3629         * testsuite/27_io/objects/wchar_t/5280_xin.in:  New.
3630         * testsuite/27_io/objects/wchar_t/6.cc:  New test.
3631         * testsuite/27_io/objects/wchar_t/6548_xin.cc:  New test.
3632         * testsuite/27_io/objects/wchar_t/6548_xin.in:  New.
3633         * testsuite/27_io/objects/wchar_t/6648-1_xin.cc:  New test.
3634         * testsuite/27_io/objects/wchar_t/6648-1_xin.in:  New.
3635         * testsuite/27_io/objects/wchar_t/6648-2_xin.cc:  New test.
3636         * testsuite/27_io/objects/wchar_t/6648-2_xin.in:  New.
3637         * testsuite/27_io/objects/wchar_t/7.cc:  New test.
3638         * testsuite/27_io/objects/wchar_t/7744_xin.cc:  New test.
3639         * testsuite/27_io/objects/wchar_t/7744_xin.in:  New.
3640         * testsuite/27_io/objects/wchar_t/8.cc:  New test.
3641         * testsuite/27_io/objects/wchar_t/9_xin.cc:  New test.
3642         * testsuite/27_io/objects/wchar_t/9_xin.in:  New.
3643         * testsuite/27_io/objects/wchar_t/9520.cc:  New test.
3644         * testsuite/27_io/objects/wchar_t/9661-1.cc:  New test.
3645         * testsuite/27_io/objects/wchar_t/9661-2_xin.cc:  New test.
3646         * testsuite/27_io/objects/wchar_t/9661-2_xin.in:  New.
3647         * testsuite/27_io/objects/wchar_t/9662.cc:  New test.
3648         * testsuite/ext/stdiobuf_char.cc:  New test.
3649         * testsuite/ext/stdiobuf_wchar_t.cc:  New test.
3650
3651 2003-05-10  Paolo Carlini  <pcarlini@unitus.it>
3652
3653         * testsuite/27_io/basic_filebuf/close/char/3.cc: Remove
3654         unnecessary includes and unused string literals.
3655         * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Likewise.
3656
3657 2003-05-08  Paolo Carlini  <pcarlini@unitus.it>
3658
3659         * include/std/std_streambuf.h (setg, setp): Don't touch _M_mode.
3660
3661 2003-05-07  Richard Henderson  <rth@redhat.com>
3662
3663         PR c++/10570
3664         * libsupc++/eh_catch.cc (__cxa_begin_catch): Handle foreign exceptions.
3665         (__cxa_end_catch): Likewise.
3666         * libsupc++/eh_throw.cc (__cxa_rethrow): Likewise.  Use
3667         _Unwind_Resume_or_Rethrow.
3668         * libsupc++/eh_personality.cc (empty_exception_spec): New.
3669         (PERSONALITY_FUNCTION): Don't ignore terminate or catch-all
3670         for _UA_FORCE_UNWIND.  Honor empty filter spec for foreign
3671         exceptions.  Don't push terminate/unexpected to cxa functions.
3672         (__cxa_call_unexpected): Remove foreign exception fixmes.
3673
3674 2003-05-07  Benjamin Kosnik  <bkoz@redhat.com>
3675
3676         * testsuite/27_io/ios_base/cons: New.
3677         * testsuite/27_io/ios_base/cons/assign_neg.cc: New.
3678         * testsuite/27_io/ios_base/cons/copy_neg.cc: New.
3679
3680 2003-05-07  Paolo Carlini  <pcarlini@unitus.it>
3681
3682         * include/std/std_fstream.h (_M_is_indeterminate): Remove.
3683         * src/fstream.cc
3684         (basic_filebuf<char/wchar_t>::_M_underflow): Simplify: either
3685         there is no buffer or __testget == !__testinit.
3686
3687         * src/fstream.cc
3688         (basic_filebuf<char/wchar_t>::_M_underflow): _M_set_determinate()
3689         automatically sets, if appropriate, _M_out_cur == _M_in_cur.
3690
3691         * include/std/std_fstream.h (_M_destroy_pback): Don't set
3692         unnecessarily _M_pback_cur_save and _M_pback_end_save.
3693
3694         * include/std/std_fstream.h (_M_set_determinate): Minor tweak.
3695
3696         * include/std/std_sstream.h (_M_sync): Minor tweak.
3697
3698         * include/bits/fstream.tcc (close): No need to call
3699         _M_destroy_pback, setting _M_pback_init to false suffices
3700         to clean up.
3701
3702 2003-05-06  Benjamin Kosnik  <bkoz@redhat.com>
3703
3704         * include/bits/stl_algo.h: Enums as _S_.
3705         * include/bits/stl_tree.h: Same.
3706         * include/bits/stl_bvector.h: Same.
3707         * include/bits/ios_base.h: Same.
3708         * include/bits/stl_alloc.h: Same.
3709         * include/ext/stl_hashtable.h: Same.
3710         * src/ios.cc: And here.
3711
3712         * include/std/std_sstream.h: Replace _M_really_sync to _M_sync.
3713         * include/bits/sstream.tcc: Same.
3714
3715         * include/bits/basic_ios.h: Correct spacing for '< ctype'.
3716
3717         * include/bits/locale_facets.tcc: Replace __temp to __tmp.
3718
3719         * include/bits/locale_facets.h (__num_base): Remove protected.
3720         Use _S_[io]* names for enumerations.
3721         (_S_format_int): Remove.
3722         * include/bits/locale_facets.tcc: Same.
3723         * src/locale.cc: Same.
3724
3725         * include/std/std_sstream.h (stringbuf::str): Tweak formatting.
3726
3727 2003-05-06  Phil Edwards  <pme@gcc.gnu.org>
3728
3729         * docs/html/faq/index.html (3.10):  Add note about mips atomicity.h.
3730         * docs/html/faq/index.txt:  Regenerated.
3731
3732 2003-05-06  Michael Ritzert <Ritzert@t-online.de>
3733             Matt Kraai <kraai@alumni.cmu.edu>
3734
3735         * include/ext/stl_rope.h (_Rope_RopeRep<>::_M_c_string_lock): Tweak.
3736         And retweak.
3737
3738 2003-05-06  Richard Sandiford  <rsandifo@redhat.com>
3739
3740         * configure.target (mips*): Use the generic atomicity.h by default.
3741
3742 2003-05-05  Loren J. Rittle  <ljrittle@acm.org>
3743             (Inspired by an alternate patch from Danny Smith.)
3744
3745         * include/bits/stl_threads.h (_Atomic_swap): Kill it...
3746         (_Swap_lock_struct<>): ...and the horse it rode in on.
3747         * src/globals.cc (_Swap_lock_struct<>): Likewise.
3748         * include/ext/stl_rope.h (_Rope_RopeRep<>::_M_c_string_lock): New
3749         member to support...
3750         * include/ext/ropeimpl.h (rope<>::c_str): Follow *all* memory
3751         visibility rules related to POSIX threads.
3752         * testsuite/thread/pthread7-rope.cc: New test.
3753
3754 2003-05-04  Paolo Carlini  <pcarlini@unitus.it>
3755
3756         * testsuite/21_strings/basic_string/find/char/3.cc: New
3757         file, testing basic_string<char>::find_first_not_of.
3758         * testsuite/21_strings/basic_string/find/wchar_t/3.cc:
3759         Likewise for basic_string<wchar_t>.
3760
3761 2003-05-03  Loren J. Rittle  <ljrittle@acm.org>
3762
3763         * testsuite/thread/pthread1.cc: Remove special case for FreeBSD.
3764
3765 2003-05-02  Benjamin Kosnik  <bkoz@redhat.com>
3766
3767         * include/Makefile.am (CLEANFILES): Remove PCH files in target
3768         directory.
3769         * include/Makefile.in: Regenerate.
3770
3771 2003-05-02  Paolo Carlini  <pcarlini@unitus.it>
3772
3773         * include/std/std_sstream.h (str()): Tidy.
3774
3775 2003-05-02  Nathan Myers  <ncm@cantrip.org>
3776             Paolo Carlini  <pcarlini@unitus.it>
3777
3778         * include/bits/streambuf.tcc (__copy_streambufs): Rewrote.
3779
3780 2003-05-02  Jonathan Wakely  <redi@gcc.gnu.org>
3781
3782         * include/bits/basic_string.h (swap): Remove redundant template
3783         parameters from declaration of non-template member function.
3784
3785 2003-05-01  Phil Edwards  <pme@gcc.gnu.org>
3786
3787         * acconfig.h (_GLIBCPP_USE_NLS):  New symbol.
3788         * configure.in:  Move libintl.h header test...
3789         * acinclude.m4 (GLIBCPP_ENABLE_CLOCALE):  ...to here.  Gather all
3790         the NLS-related test results into one symbol.
3791         * src/functexcept.cc:  Use it here.
3792         * aclocal.m4, config.h.in, configure:  Regenerated.
3793
3794 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3795
3796         * include/bits/sstream.tcc (overflow): Instead of calling
3797         str(), then _M_string.reserve, thus copying the contents
3798         of the current buffer two times, just copy the latter in
3799         a temporary, then use the 'swap trick'.
3800
3801 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3802
3803         * include/std/std_sstream.h (str()): Revert the best of the
3804         previous 'improvement', incorrect due to the COW nature of
3805         v3 basic_string; simplify.
3806
3807 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3808
3809         * include/bits/streambuf.tcc (__copy_streambufs): Adjust the
3810         type of __avail to ptrdiff_t to avoid signed-unsigned warning.
3811
3812 2003-05-01  Benjamin Kosnik  <bkoz@redhat.com>
3813
3814         * testsuite/abi_check.cc (check_version): Update known versions.
3815         Check added symbols for version_name != base version. Add missing
3816         symbols to incompatible list.
3817
3818 2003-05-01  Benjamin Kosnik  <bkoz@redhat.com>
3819
3820         * acinclude.m4 (GLIBCPP_EXPORT_FLAGS): Remove -Winline.
3821         * aclocal.m4: Regenerated.
3822         * configure: Regenerated.
3823
3824 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3825
3826         * include/bits/streambuf.tcc (basic_streambuf::xsgetn):
3827         Const-ify some variables.
3828         (basic_streambuf::xsputn): Likewise; change the type of some
3829         variables to size_t.
3830         (__copy_streambufs): Change some variables to size_t.
3831
3832 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3833
3834         * include/std/std_sstream.h (str()): Avoid constructing
3835         a basic_string temporary not only when it would turn out
3836         to be zero-sized but also when identical to the current
3837         _M_string buffer.
3838
3839 2003-05-01  Paolo Carlini  <pcarlini@unitus.it>
3840
3841         * include/ext/stdio_filebuf.h
3842         (stdio_filebuf(int, std::ios_base::openmode, bool, size_t),
3843         stdio_filebuf(std::__c_file*, std::ios_base::openmode, size_t)):
3844         Shorten a bit (-10 lines) by factoring out some code.
3845
3846 2003-04-30  Phil Edwards  <pme@gcc.gnu.org>
3847
3848         * acinclude.m4:  Add bit missing from previous patch.
3849         * aclocal.m4, configure:  Regenerated.
3850
3851 2003-04-29  Phil Edwards  <pme@gcc.gnu.org>
3852
3853         * docs/doxygen/mainpage.html:  Bring up to date.
3854         * docs/doxygen/run_doxygen:  Cosmetic tweaks.  Work around a bug
3855         in Doxygen.
3856         * docs/doxygen/user.cfg.in:  Scanning the precompiled headers
3857         breaks everything.  Don't scan them.
3858         * docs/html/documentation.html:  Point to "Write after approval"
3859         notes.
3860
3861 2003-04-29  Phil Edwards  <pme@gcc.gnu.org>
3862
3863         * acinclude.m4 (GLIBCPP_ENABLE_CLOCALE):  Search for gettext outside
3864         of libc if message translations are being used.  Fix info text in
3865         xieee_1003.1-2001 case.
3866         * aclocal.m4, configure:  Regenerate.
3867
3868 2003-04-29 Joel Sherrill  <joel.sherrill@OARcorp.com>
3869            Loren J. Rittle <ljrittle@acm.org>
3870            Martin v. Loewis  <martin@v.loewis.de>
3871
3872         * config/cpu/i386/atomicity.h: New file.
3873
3874 2003-04-29  Paolo Carlini  <pcarlini@unitus.it>
3875
3876         * include/bits/fstream.tcc (open): Change to single return.
3877
3878 2003-04-29  Paolo Carlini  <pcarlini@unitus.it>
3879
3880         * include/std/std_sstream.h (underflow): Change to single return.
3881
3882 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
3883
3884         * include/std/std_streambuf.h (_M_buf): is currently
3885         used only for basic_filebuf, therefore move it there.
3886         (basic_streambuf(), ~basic_streambuf()): Adjust.
3887         * include/std/std_fstream.h (_M_buf): Moved here.
3888         * include/std/std_sstream.h (setbuf): Don't set _M_buf,
3889         is actually redundant for basic_stringbuf.
3890         (_M_really_sync): Likewise.
3891         * include/bits/fstream.tcc (basic_filebuf()): Adjust.
3892         * include/bits/sstream.tcc (seekoff): Adjust.
3893
3894 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
3895
3896         * src/localename.cc: Standardize exception strings.
3897         * src/locale.cc: Same.
3898         * src/ios.cc: Same.
3899         * include/bits/basic_string.tcc: Same.
3900         * include/bits/basic_ios.tcc: Same.
3901         * include/std/std_bitset.h: Same.
3902         * include/ext/ropeimpl.h: Same.
3903         * include/bits/stl_vector.h: Same.
3904         * include/bits/stl_deque.h: Same.
3905         * include/bits/stl_bvector.h: Same.
3906         * config/locale/generic/c_locale.cc: Same.
3907         * config/locale/gnu/c_locale.cc: Same.
3908         * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Same.
3909
3910         * testsuite/testsuite_hooks.cc (__gnu_cxx_test): Modify.
3911
3912 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
3913
3914         * include/std/std_streambuf.h (_M_buf_size): is currently
3915         used only for basic_filebuf, therefore move it there.
3916         (basic_streambuf(), ~basic_streambuf()): Adjust.
3917         * include/std/std_fstream.h (_M_buf_size): Moved here.
3918         * include/bits/fstream.tcc (basic_filebuf()): Adjust.
3919
3920 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
3921
3922         * include/bits/streambuf.tcc (__copy_streambufs): Don't use
3923         _M_buf_size (synced input is now correctly dealt with
3924         elsewhere); when the output buffer is full don't fall back
3925         to a snextc-sputc loop, call overflow instead.
3926
3927 2003-04-28  Paolo Carlini  <pcarlini@unitus.it>
3928
3929         * include/bits/sstream.tcc (pbackfail): Shorten a bit (6 lines)
3930         the innermost 'if' by factoring out some code.
3931
3932 2003-04-28  Phil Edwards  <pme@gcc.gnu.org>
3933
3934         * configure.in:  Test for libintl.h.
3935         * include/bits/c++config:  Define __N for everybody.
3936         * include/bits/basic_string.h, include/bits/stl_bvector.h,
3937         include/bits/stl_deque.h, include/bits/stl_vector.h,
3938         include/std/std_bitset.h:  Wrap all __throw* text with __N.
3939         * po/Makefile.am (pot):  New rule, mostly working.
3940         * src/functexcept.cc:  Call gettext on all __throw* arguments when
3941         -fexceptions is in effect.
3942         * po/Makefile.in, config.h.in, configure:  Regenerate.
3943
3944 2003-04-28  Petur Runolfsson  <peturr02@ru.is>
3945
3946         PR libstdc++/9523
3947         * include/bits/ios_base.h (Init::_S_ios_create,
3948         Init::_S_ios_destroy):  Remove declarations.
3949         (Init::_S_create_buffers,
3950         Init::_S_destroy_buffers):  Declare
3951         * src/ios.cc (Init::_S_ios_create):  Remove
3952         (Init::_S_create_buffers):  Create buffers and add to streams.
3953         (Init::_S_ios_destroy):  Rename to...
3954         (Init::_S_destroy_buffers):  this.
3955         (Init::Init):  Only construct streams once.
3956         (Init::~Init):  Flush streams, don't destroy them.
3957         (ios_base::sync_with_stdio):  Don't destroy streams, only buffers.
3958         * testsuite/27_io/ios_base/sync_with_stdio/9523.cc:  New test.
3959         * testsuite/27_io/objects/char/5.cc:  New test.
3960         * testsuite/27_io/objects/char/5268.cc:  Avoid undefined behavior.
3961         * testsuite/27_io/objects/char/6.cc:  New test.
3962         * testsuite/27_io/objects/char/7.cc:  New test.
3963
3964 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
3965
3966         * testsuite/27_io/objects/char/8.cc:  New test.
3967
3968 2003-04-28  Benjamin Kosnik  <bkoz@redhat.com>
3969
3970         * testsuite/22_locale/codecvt/unicode/char.cc: Remove bom usage.
3971         * testsuite/22_locale/codecvt/unicode/wchar_t.cc: Same.
3972
3973 2003-04-27  Benjamin Kosnik  <bkoz@redhat.com>
3974
3975         * include/std/std_fstream.h (basic_filebuf): _M_pback_destroy to
3976         _M_destroy_pback. _M_pback_create to
3977         _M_create_pback. _M_underflow_common to
3978         _M_underflow. _M_really_overflow to _M_overflow.
3979         * include/bits/fstream.tcc: Same.
3980         * src/fstream.cc: Same.
3981         * include/std/std_streambuf.h (basic_streambuf): _M_in_cur_move to
3982         _M_move_in_cur.  _M_out_cur_move to _M_move_out_cur.
3983         * include/bits/streambuf.tcc: Same.
3984         * include/bits/fstream.tcc: Same.
3985         * include/bits/sstream.tcc: Same.
3986
3987 2003-04-27  Benjamin Kosnik  <bkoz@redhat.com>
3988
3989         * include/bits/locale_classes.h (locale::_Impl): Change _M_names
3990         from fixed size array.
3991         (locale): Change _S_categories as well.
3992         Formatting tweaks.
3993         * include/bits/locale_facets.tcc: Tweak.
3994         * config/locale/gnu/c_locale.cc: Assign _S_categories.
3995         * config/locale/generic/c_locale.cc: Same.
3996         * src/locale.cc: Tweak.
3997         * src/globals.cc: Change facet_name to name_vec, add names_c.
3998         * src/localename.cc: Use them.
3999         (locale::_Impl::~_Impl): Destroy _M_names.
4000         (locale::_Impl::_Impl): Create _M_names.
4001
4002 2003-04-27  Andreas Schwab  <schwab@suse.de>
4003
4004         * config/locale/ieee_1003.1-2001/codecvt_specializations.h
4005         (__enc_traits): Use __ibom and __ebom instead of ignoring them.
4006
4007 2003-04-27  Nathan Myers  <ncm@cantrip.org>
4008
4009         Move some basic_string members out of line because
4010         they are too big to reasonably be inline.
4011         * include/bits/basic_string.h
4012         (assign(const basic_string&, size_type, size_type),
4013         assign(const _CharT*, size_type),
4014         insert(size_type, const basic_string&, size_type, size_type),
4015         insert(size_type, const _CharT*, size_type),
4016         replace(size_type, size_type, const _CharT*, size_type)):
4017         Move from here to...
4018         * include/bits/basic_string.tcc: ...here.
4019
4020 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
4021
4022         * include/bits/fstream.tcc (pbackfail): Shorten a bit (10 lines)
4023         the innermost 'if' by factoring out some code.
4024
4025 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
4026
4027         * include/bits/streambuf.tcc (__copy_streambufs): Don't
4028         use in_avail(), simplify.
4029
4030 2003-04-26  Paolo Carlini  <pcarlini@unitus.it>
4031
4032         * include/std/std_sstream.h (setbuf): don't set _M_buf_size,
4033         in basic_stringbuf it's unused.
4034
4035         * include/std/std_sstream.h (underflow): consistently use
4036         _M_in_cur, not gptr().
4037
4038 2003-04-25  Ranjit Mathew  <rmathew@hotmail.com>
4039             Phil Edwards  <pme@gcc.gnu.org>
4040
4041         * testsuite_flags.in: Guard against the possibility
4042         of having "xgcc" as a part of a folder name in the
4043         path to the GCC build folder.
4044         * testsuite/Makefile.am: Likewise.
4045         * testsuite/Makefile.in: Regenerated.
4046
4047 2003-04-25  Benjamin Kosnik  <bkoz@redhat.com>
4048
4049         PR libstdc++/10132
4050         * include/std/std_fstream.h (basic_filebuf::is_open): Add throw()
4051         exception specifications.
4052         (basic_filebuf::close): Same.
4053         (basic_filebuf::_M_pback_destroy): Same.
4054         (basic_filebuf::_M_destroy_internal_buffer): Same.
4055         (basic_filebuf): Remove __res_type typedef.
4056         * src/fstream.cc: Same.
4057         * include/bits/fstream.tcc
4058         (basic_filebuf::_M_convert_to_external): Simplify.
4059         (basic_filebuf::seekoff): Use has_facet before use_facet.
4060         (basic_filebuf::close): Add exception specification of throw().
4061         * testsuite/27_io/basic_filebuf/cons: New.
4062         * testsuite/27_io/basic_filebuf/cons/wchar_t: New.
4063         * testsuite/27_io/basic_filebuf/cons/wchar_t/10132-1.cc: New.
4064         * testsuite/27_io/basic_filebuf/seekoff/10132-2.cc: New.
4065         * testsuite/27_io/basic_filebuf/seekpos/10132-3.cc: New.
4066
4067 2003-04-25  Benjamin Kosnik  <bkoz@redhat.com>
4068
4069         * include/bits/locale_classes.h
4070         (locale::_S_extra_categories_size): Remove.
4071         * src/locale.cc: Remove _S_extra_categories_size.
4072         * src/localename.cc: Same.
4073         * config/locale/gnu/c_locale.cc: Same.
4074         * config/locale/generic/c_locale.cc: Same.
4075
4076 2003-04-24  Richard Sandiford  <rsandifo@redhat.com>
4077
4078         * src/localename.cc (__gnu_cxx::facet_vec): Correct types.
4079
4080 2003-04-24  Phil Edwards  <pme@gcc.gnu.org>
4081
4082         * docs/html/17_intro/howto.html:  Update some links.
4083         * docs/html/18_support/howto.html:  Link doxygen numeric_limits notes.
4084         * docs/html/27_io/howto.html:  Link doxygen stdio_filebuf notes.
4085         * docs/html/ext/howto.html:  Link to demangler notes and API.
4086         * docs/html/faq/index.html:  Remove trailing whitespace.
4087         (1.4, 2.4, 3.8, 4.1):  Bring up to date.
4088         (5.6):  Change to a bulleted list.
4089
4090         * docs/html/faq/index.txt, docs/html/documentation.html,
4091         docs/html/17_intro/porting.html:  Regenerate.
4092
4093 2003-04-23  Paolo Carlini  <pcarlini@unitus.it>
4094
4095         * testsuite/27_io/basic_filebuf/3.cc: _S_pback_size now
4096         belongs to basic_filebuf.
4097         * testsuite/27_io/basic_fstream/3.cc: Likewise.
4098         * testsuite/27_io/basic_ifstream/3.cc: Likewise.
4099         * testsuite/27_io/basic_ios/3.cc: Remove _S_pback_size
4100         instantiation (now belongs to basic_filebuf).
4101         * testsuite/27_io/basic_iostream/3.cc: Likewise.
4102         * testsuite/27_io/basic_istream/3.cc: Likewise.
4103         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc:
4104         _S_pback_size now belongs to basic_filebuf.
4105         * testsuite/27_io/basic_istringstream/3.cc: Remove _S_pback_size
4106         instantiation (now belongs to basic_filebuf).
4107         * testsuite/27_io/basic_ofstream/3.cc: _S_pback_size now
4108         belongs to basic_filebuf.
4109         * testsuite/27_io/basic_ostream/3.cc: Remove _S_pback_size
4110         instantiation (now belongs to basic_filebuf).
4111         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc:
4112         _S_pback_size now belongs to basic_filebuf.
4113         * testsuite/27_io/basic_ostringstream/3.cc: Remove _S_pback_size
4114         instantiation (now belongs to basic_filebuf).
4115         * testsuite/27_io/basic_streambuf/3.cc: _S_pback_size now belongs
4116         to basic_filebuf.
4117         * testsuite/27_io/basic_stringbuf/3.cc: Remove _S_pback_size
4118         instantiation (now belongs to basic_filebuf).
4119         * testsuite/27_io/basic_stringstream/3.cc: Likewise.
4120
4121 2003-04-23  Benjamin Kosnik  <bkoz@redhat.com>
4122
4123         * configure.in: Move GLIBCPP_CHECK_PCH before native/cross conditions.
4124         * configure: Regenerated.
4125
4126 2003-04-23  Benjamin Kosnik  <bkoz@redhat.com>
4127
4128         * config/locale/generic/c_locale.h (__convert_from_v): Use
4129         attribute unused.
4130
4131 2003-04-23  Phil Edwards  <pme@gcc.gnu.org>
4132
4133         * docs/html/ext/howto.html ('LWG Issues'):  Add issue 60, partial
4134         implementation only.
4135         * include/bits/istream.tcc (putback, unget, sync, tellg, seekg):
4136         Comment and change to comply with DR 60 and the effect on gcount().
4137         * include/std/std_istream.h:  Update comments.
4138         * testsuite/27_io/basic_istream/putback/char/1.cc (test01):  Add
4139         comments about reasons for tests.  Test sync() against gcount().
4140         * testsuite/27_io/basic_istream/seekg/char/2.cc:  New file, test
4141         for effect on gcount().
4142         * testsuite/27_io/basic_istream/tellg/char/2.cc:  New file, test
4143         for effect on gcount().
4144
4145 2003-04-22  Loren J. Rittle  <ljrittle@acm.org>
4146
4147         * testsuite/27_io/basic_filebuf/close/char/9964.cc (test_07):
4148         Adjust timing.
4149
4150 2003-04-22  Paolo Carlini  <pcarlini@unitus.it>
4151
4152         * include/std/std_streambuf.h (_S_pback_size, _M_pback,
4153         _M_pback_cur_save, _M_pback_end_save, _M_pback_init,
4154         _M_pback_create(), _M_pback_destroy()): Move to basic_filebuf.
4155         (basic_streambuf::basic_streambuf()): Adjust.
4156         * include/std/std_fstream.h (_S_pback_size, _M_pback,
4157         _M_pback_cur_save, _M_pback_end_save, _M_pback_init,
4158         _M_pback_create(), _M_pback_destroy()): Moved here
4159         from basic_streambuf.
4160         * include/bits/fstream.tcc (basic_filebuf::basic_filebuf()):
4161         Adjust.
4162         (basic_filebuf::_S_pback_size): Add declaration.
4163         * include/bits/streambuf.tcc (basic_streambuf::_S_pback_size):
4164         Remove declaration.
4165
4166 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
4167
4168         Consistently use _M_in_beg instead of eback(), _M_in_cur
4169         instead of gptr(), and so on.
4170         * include/bits/fstream.tcc (pbackfail, imbue): Here.
4171         * include/bits/sstream.tcc (pbackfail, seekoff, seekpos): Ditto.
4172         * include/bits/streambuf.tcc (sbumpc, sputbackc,
4173         __copy_streambufs): Ditto.
4174         * include/std/std_streambuf.h (sgetc): Ditto.
4175
4176 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
4177
4178         * include/bits/sstream.tcc (pbackfail, overflow):
4179         Formatting fixes.
4180
4181 2003-04-21  Paolo Carlini  <pcarlini@unitus.it>
4182
4183         * include/std/std_streambuf.h (uflow()): It's used only by
4184         basic_stringbuf (i.e., basic_filebuf provide its own uflow()),
4185         therefore do not consider the _M_buf_unified == true case.
4186
4187         * include/std/std_streambuf.h (sgetc()): Restore __ret variable.
4188
4189 2003-04-20  Paolo Carlini  <pcarlini@unitus.it>
4190
4191         * docs/html/ext/howto.html ('LWG Issues'):
4192         Add issues 19, 90, 171, 231, 271.
4193
4194 2003-04-20  Paolo Carlini  <pcarlini@unitus.it>
4195
4196         * include/bits/sstream.tcc (pbackfail): Remove redundant
4197         NULL pointer check from test involving _M_in_*.
4198         (overflow, seekoff, seekpos): Const qualify bool variables.
4199         * include/std/std_sstream.h (underflow): Remove redundant
4200         NULL pointer check from test involving _M_in_*.
4201         (_M_really_sync): Const qualify bool variables.
4202         * src/fstream.cc (_M_underflow_common): Remove redundant
4203         NULL pointer check from test involving _M_in_*, const qualify
4204         bool variables.
4205
4206         * include/std/std_streambuf.h (sgetc): Remove redundant
4207         variable.
4208
4209 2003-04-18  Paolo Carlini  <pcarlini@unitus.it>
4210
4211         According to 5.9 para 2 (second bullet) for pointers p, q
4212         pointing to the same type, with  p == 0 and q == 0, (p < q)
4213         is false.
4214         * include/bits/fstream.tcc (close, overflow, _M_really_overflow,
4215         seekoff): Remove redundant NULL pointer checks from tests
4216         involving _M_out_* and _M_in_*, const qualify bool variables.
4217         (showmanyc, pbackfail, _M_convert_to_external, imbue): Const
4218         qualify bool variables.
4219         * include/bits/streambuf.tcc (sbumpc, sputbackc, sungetc, sputc):
4220         Remove redundant NULL pointer checks from tests involving
4221         _M_out_* and _M_in_*, const qualify bool variables.
4222         * include/std/std_fstream.h (sync): Likewise.
4223         (_M_is_indeterminate): Const qualify bool variables.
4224         * include/std/std_streambuf.h (sgetc, uflow): Remove redundant
4225         NULL pointer checks from tests involving _M_out_* and _M_in_*,
4226         const qualify bool variables.
4227         (_M_in_cur_move, _M_out_cur_move, uflow): Const qualify bool
4228         variables.
4229
4230 2003-04-18  Loren J. Rittle  <ljrittle@acm.org>
4231
4232         * include/c_std/std_cmath.h (C99 FP capture): Only undefine said
4233         C99 FP macros, if actually captured.
4234
4235         * docs/html/17_intro/porting.texi (_GLIBCPP_USE_C99_CHECK): New macro.
4236         (_GLIBCPP_USE_C99_DYNAMIC): New macro.
4237         (_GLIBCPP_USE_C99_LONG_LONG_CHECK): New macro.
4238         (_GLIBCPP_USE_C99_LONG_LONG_DYNAMIC): New macro.
4239         * config/os/bsd/freebsd/os_defines.h (_GLIBCPP_USE_C99_CHECK):
4240         New macro.
4241         (_GLIBCPP_USE_C99_DYNAMIC): New macro.
4242         (_GLIBCPP_USE_C99_LONG_LONG_CHECK): New macro.
4243         (_GLIBCPP_USE_C99_LONG_LONG_DYNAMIC): New macro.
4244         * include/c_std/std_cstdlib.h: Use new macros.
4245         * include/c_std/std_cstdio.h: Use new macros.
4246         * include/c_std/std_cwchar.h: Use new macros.
4247
4248 2003-04-17  Benjamin Kosnik  <bkoz@redhat.com>
4249
4250         PR libstdc++/9555
4251         * include/bits/ostream.tcc: Catch all exceptions for formatted
4252         output, instead of std::exception and derivatives.
4253         * include/bits/istream.tcc: Same.
4254         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/9555-oa.cc:
4255         * testsuite/27_io/basic_ostream/inserters_character/char/9555-oc.cc:
4256         * testsuite/27_io/basic_ostream/inserters_other/char/9555-oo.cc:
4257         * testsuite/27_io/basic_istream/extractors_arithmetic/char/9555-ia.cc:
4258         * testsuite/27_io/basic_istream/extractors_character/char/9555-ic.cc:
4259         * testsuite/27_io/basic_istream/extractors_other/char/9555-io.cc:
4260         New.
4261
4262 2003-04-17  Phil Edwards  <pme@gcc.gnu.org>
4263
4264         * include/bits/c++config:  Minor cosmetic tweaks.
4265
4266 2003-04-17  Loren J. Rittle  <ljrittle@acm.org>
4267
4268         * testsuite_flags.in (PCHFLAGS): Find PCH in new home.
4269         * include/Makefile.am (pch_input): Find in ${target_builddir}.
4270         (pch_output): Rename to...
4271         (pch_output_builddir): ..this.  Find in ${target_builddir}.
4272         (pch_source): Tweak.
4273         (pch_build): Key off a built file.
4274         (pch_output rule): Rename to...
4275         (pch_input rule): ...this.  Produce ${pch_output_builddir}
4276         instead of ${pch_output}.
4277         (install-pch rule): Install ${pch_output_builddir}.
4278         * include/Makefile.in: Regenerated.
4279
4280 2003-04-17  Paolo Carlini  <pcarlini@unitus.it>
4281
4282         * include/std/std_streambuf.h (setp): _M_out_lim, being
4283         the end limit of used put area, is set equal to _M_out_beg.
4284
4285 2003-04-16  Benjamin Kosnik  <bkoz@redhat.com>
4286
4287         * acinclude.m4 (GLIBCPP_CHECK_PCH): New.
4288         * aclocal.m4: Regenerated.
4289         * configure.in: Remove old demangler bits.
4290         Call pch checks.
4291         * configure: Regenerate.
4292         * config.h.in: Regenerate.
4293         * include/Makefile.am (allstamps): Now allstamped.
4294         (allcreated): Define this.
4295         (all-local): Use 'em.
4296         Conditionally define pch_build, pch_install based on
4297         GLIBCPP_BUILD_PCH.
4298         (${pch_output}): New rule.
4299         (install-pch): New rule.
4300         (install-headers): New rule.
4301         (install-data-local): Install headers and conditionally pch.
4302         * include/Makefile.in: Regenerate.
4303         * testsuite_flags.in (--build-cxx): Use pch file.
4304
4305 2003-04-16  Jonathan Wakely  <redi@gcc.gnu.org>
4306
4307         * docs/html/ext/sgiexts.html: Fix path to stylesheet.
4308
4309 2003-04-15  Benjamin Kosnik  <bkoz at redhat dot com>
4310             Paolo Carlini  <pcarlini at unitus dot it>
4311
4312         PR libstdc++/9423
4313         * docs/html/27_io/howto.html
4314         ('The buffering is screwing up my program!'): Explain that
4315         opening counts as an I/O operation.
4316
4317 2003-04-15  Andreas Tobler  <a.tobler@schweiz.ch>
4318
4319         * testsuite/thread/pthread1.cc: Enable for darwin test.
4320         * testsuite/thread/pthread2.cc: Same.
4321         * testsuite/thread/pthread3.cc: Same.
4322         * testsuite/thread/pthread4.cc: Same.
4323         * testsuite/thread/pthread5.cc: Same.
4324         * testsuite/thread/pthread6.cc: Same.
4325
4326 2003-04-15  Loren J. Rittle  <ljrittle@acm.org>
4327
4328         libstdc++/7680
4329         * include/c_std/std_cmath.h (__gnu_cx::__c99_binding): New namespace.
4330         Populate it with multiple legal ways to obtain the C99 float
4331         transcendentals.  Use them instead of direct global reference.
4332         (C99 FP capture): Guard usage with _GLIBCPP_USE_C99_FP_MACROS_DYNAMIC.
4333         * docs/html/17_intro/porting.texi
4334         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_CHECK): New macro.
4335         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_DYNAMIC): New macro.
4336         (_GLIBCPP_USE_C99_FP_MACROS_DYNAMIC): New macro.
4337         * config/os/bsd/freebsd/os_defines.h
4338         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_CHECK): New macro.
4339         (_GLIBCPP_USE_C99_FLOAT_TRANSCENDENTALS_DYNAMIC): New macro.
4340         * testsuite/26_numerics/c_math_dynamic.cc: New file.
4341
4342 2003-04-14  Andreas Tobler  <toa@pop.agri.ch>
4343             Benjamin Kosnik  <bkoz@redhat.com>
4344
4345         * config/os/generic/ctype_inline.h: Fix.
4346
4347 2003-04-14  Benjamin Kosnik  <bkoz@redhat.com>
4348
4349         * testsuite/testsuite_hooks.h
4350         (__gnu_cxx_test::run_test_wrapped_generic_locale_exception_catcher):
4351         Change to try_named_locale.
4352         * testsuite/testsuite_hooks.cc (__gnu_cxx_test): Same.
4353
4354         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc: Use
4355         try_named_locale.
4356         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc: Same.
4357         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc: Same.
4358         * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc: Same.
4359         * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc: Same.
4360         * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc: Same.
4361         * testsuite/22_locale/codecvt/in/wchar_t/2.cc: Same.
4362         * testsuite/22_locale/codecvt/in/wchar_t/3.cc: Same.
4363         * testsuite/22_locale/codecvt/in/wchar_t/4.cc: Same.
4364         * testsuite/22_locale/codecvt/in/wchar_t/7.cc: Same.
4365         * testsuite/22_locale/codecvt/in/wchar_t/8.cc: Same.
4366         * testsuite/22_locale/codecvt/in/wchar_t/9.cc: Same.
4367         * testsuite/22_locale/codecvt/length/wchar_t/2.cc: Same.
4368         * testsuite/22_locale/codecvt/length/wchar_t/3.cc: Same.
4369         * testsuite/22_locale/codecvt/length/wchar_t/4.cc: Same.
4370         * testsuite/22_locale/codecvt/length/wchar_t/7.cc: Same.
4371         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc: Same.
4372         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc: Same.
4373         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc: Same.
4374         * testsuite/22_locale/codecvt/out/wchar_t/2.cc: Same.
4375         * testsuite/22_locale/codecvt/out/wchar_t/3.cc: Same.
4376         * testsuite/22_locale/codecvt/out/wchar_t/4.cc: Same.
4377         * testsuite/22_locale/codecvt/out/wchar_t/7.cc: Same.
4378         * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc: Same.
4379         * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc: Same.
4380         * testsuite/22_locale/codecvt/unshift/wchar_t/4.cc: Same.
4381         * testsuite/22_locale/collate/compare/char/1.cc: Same.
4382         * testsuite/22_locale/collate/compare/char/2.cc: Same.
4383         * testsuite/22_locale/collate/compare/char/3.cc: Same.
4384         * testsuite/22_locale/collate/compare/wchar_t/1.cc: Same.
4385         * testsuite/22_locale/collate/compare/wchar_t/2.cc: Same.
4386         * testsuite/22_locale/collate/compare/wchar_t/3.cc: Same.
4387         * testsuite/22_locale/collate/hash/char/2.cc: Same.
4388         * testsuite/22_locale/collate/hash/wchar_t/2.cc: Same.
4389         * testsuite/22_locale/collate/transform/char/2.cc: Same.
4390         * testsuite/22_locale/collate/transform/char/3.cc: Same.
4391         * testsuite/22_locale/collate/transform/wchar_t/2.cc: Same.
4392         * testsuite/22_locale/collate/transform/wchar_t/3.cc: Same.
4393         * testsuite/22_locale/collate_byname/1.cc: Same.
4394         * testsuite/22_locale/ctype/is/char/2.cc: Same.
4395         * testsuite/22_locale/ctype/is/wchar_t/2.cc: Same.
4396         * testsuite/22_locale/ctype/narrow/wchar_t/3.cc: Same.
4397         * testsuite/22_locale/ctype/widen/wchar_t/2.cc: Same.
4398         * testsuite/22_locale/ctype/widen/wchar_t/3.cc: Same.
4399         * testsuite/22_locale/facet/2.cc: Same.
4400         * testsuite/22_locale/locale/cons/2.cc: Same.
4401         * testsuite/22_locale/locale/cons/4.cc: Same.
4402         * testsuite/22_locale/locale/cons/5.cc: Same.
4403         * testsuite/22_locale/locale/cons/7.cc: Same.
4404         * testsuite/22_locale/locale/cons/7222-c.cc: Same.
4405         * testsuite/22_locale/locale/cons/7222-env.cc: Same.
4406         * testsuite/22_locale/locale/global_locale_objects/2.cc: Same.
4407         * testsuite/22_locale/messages/members/char/1.cc: Same.
4408         * testsuite/22_locale/messages/members/char/2.cc: Same.
4409         * testsuite/22_locale/messages/members/char/3.cc: Same.
4410         * testsuite/22_locale/messages_byname/1.cc: Same.
4411         * testsuite/22_locale/money_get/get/char/1.cc: Same.
4412         * testsuite/22_locale/money_get/get/char/2.cc: Same.
4413         * testsuite/22_locale/money_get/get/char/3.cc: Same.
4414         * testsuite/22_locale/money_get/get/char/4.cc: Same.
4415         * testsuite/22_locale/money_get/get/wchar_t/1.cc: Same.
4416         * testsuite/22_locale/money_get/get/wchar_t/2.cc: Same.
4417         * testsuite/22_locale/money_get/get/wchar_t/3.cc: Same.
4418         * testsuite/22_locale/money_get/get/wchar_t/4.cc: Same.
4419         * testsuite/22_locale/money_put/put/char/1.cc: Same.
4420         * testsuite/22_locale/money_put/put/char/2.cc: Same.
4421         * testsuite/22_locale/money_put/put/char/3.cc: Same.
4422         * testsuite/22_locale/money_put/put/wchar_t/1.cc: Same.
4423         * testsuite/22_locale/money_put/put/wchar_t/2.cc: Same.
4424         * testsuite/22_locale/money_put/put/wchar_t/3.cc: Same.
4425         * testsuite/22_locale/moneypunct/members/char/2.cc: Same.
4426         * testsuite/22_locale/moneypunct/members/wchar_t/2.cc: Same.
4427         * testsuite/22_locale/moneypunct_byname/1.cc: Same.
4428         * testsuite/22_locale/num_get/get/char/1.cc: Same.
4429         * testsuite/22_locale/num_get/get/char/2.cc: Same.
4430         * testsuite/22_locale/num_get/get/char/3.cc: Same.
4431         * testsuite/22_locale/num_get/get/char/5.cc: Same.
4432         * testsuite/22_locale/num_get/get/char/6.cc: Same.
4433         * testsuite/22_locale/num_get/get/wchar_t/1.cc: Same.
4434         * testsuite/22_locale/num_get/get/wchar_t/2.cc: Same.
4435         * testsuite/22_locale/num_get/get/wchar_t/3.cc: Same.
4436         * testsuite/22_locale/num_get/get/wchar_t/5.cc: Same.
4437         * testsuite/22_locale/num_get/get/wchar_t/6.cc: Same.
4438         * testsuite/22_locale/num_put/put/char/1.cc: Same.
4439         * testsuite/22_locale/num_put/put/char/2.cc: Same.
4440         * testsuite/22_locale/num_put/put/char/3.cc: Same.
4441         * testsuite/22_locale/num_put/put/char/5.cc: Same.
4442         * testsuite/22_locale/num_put/put/wchar_t/1.cc: Same.
4443         * testsuite/22_locale/num_put/put/wchar_t/2.cc: Same.
4444         * testsuite/22_locale/num_put/put/wchar_t/3.cc: Same.
4445         * testsuite/22_locale/num_put/put/wchar_t/5.cc: Same.
4446         * testsuite/22_locale/numpunct/members/char/1.cc: Same.
4447         * testsuite/22_locale/numpunct/members/char/2.cc: Same.
4448         * testsuite/22_locale/numpunct/members/wchar_t/1.cc: Same.
4449         * testsuite/22_locale/numpunct/members/wchar_t/2.cc: Same.
4450         * testsuite/22_locale/numpunct_byname/1.cc: Same.
4451         * testsuite/22_locale/numpunct_byname/2.cc: Same.
4452         * testsuite/22_locale/time_get/date_order/char/1.cc: Same.
4453         * testsuite/22_locale/time_get/date_order/wchar_t/1.cc: Same.
4454         * testsuite/22_locale/time_get/get_date/char/1.cc: Same.
4455         * testsuite/22_locale/time_get/get_date/char/2.cc: Same.
4456         * testsuite/22_locale/time_get/get_date/wchar_t/1.cc: Same.
4457         * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Same.
4458         * testsuite/22_locale/time_get/get_monthname/char/1.cc: Same.
4459         * testsuite/22_locale/time_get/get_monthname/char/2.cc: Same.
4460         * testsuite/22_locale/time_get/get_monthname/wchar_t/1.cc: Same.
4461         * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Same.
4462         * testsuite/22_locale/time_get/get_time/char/1.cc: Same.
4463         * testsuite/22_locale/time_get/get_time/char/2.cc: Same.
4464         * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Same.
4465         * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Same.
4466         * testsuite/22_locale/time_get/get_weekday/char/1.cc: Same.
4467         * testsuite/22_locale/time_get/get_weekday/char/2.cc: Same.
4468         * testsuite/22_locale/time_get/get_weekday/wchar_t/1.cc: Same.
4469         * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Same.
4470         * testsuite/22_locale/time_get/get_year/char/1.cc: Same.
4471         * testsuite/22_locale/time_get/get_year/wchar_t/1.cc: Same.
4472         * testsuite/22_locale/time_put/put/char/1.cc: Same.
4473         * testsuite/22_locale/time_put/put/char/2.cc: Same.
4474         * testsuite/22_locale/time_put/put/char/3.cc: Same.
4475         * testsuite/22_locale/time_put/put/char/4.cc: Same.
4476         * testsuite/22_locale/time_put/put/char/5.cc: Same.
4477         * testsuite/22_locale/time_put/put/char/6.cc: Same.
4478         * testsuite/22_locale/time_put/put/char/7.cc: Same.
4479         * testsuite/22_locale/time_put/put/char/8.cc: Same.
4480         * testsuite/22_locale/time_put/put/wchar_t/1.cc: Same.
4481         * testsuite/22_locale/time_put/put/wchar_t/2.cc: Same.
4482         * testsuite/22_locale/time_put/put/wchar_t/3.cc: Same.
4483         * testsuite/22_locale/time_put/put/wchar_t/4.cc: Same.
4484         * testsuite/22_locale/time_put/put/wchar_t/5.cc: Same.
4485         * testsuite/22_locale/time_put/put/wchar_t/6.cc: Same.
4486         * testsuite/22_locale/time_put/put/wchar_t/7.cc: Same.
4487         * testsuite/22_locale/time_put/put/wchar_t/8.cc: Same.
4488         * testsuite/27_io/basic_filebuf/imbue/char/9322.cc: Same.
4489         * testsuite/27_io/basic_ios/copyfmt/char/2.cc: Same.
4490         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/2.cc: Same.
4491         * testsuite/27_io/basic_streambuf/imbue/char/9322.cc: Same.
4492         * testsuite/27_io/basic_stringbuf/imbue/char/9322.cc: Same.
4493
4494 2003-04-14  Andreas Tobler  <toa@pop.agri.ch>
4495
4496         * configure.target (_cpu_incdir_fullpath): Solaris 2.9 uses
4497         solaris includes, not generic.
4498
4499 2003-04-14  Loren J. Rittle  <ljrittle@acm.org>
4500
4501         * testsuite/26_numerics/c99_classification_macros_c.cc: Add XFAIL.
4502
4503         * include/std/std_bitset.h (_M_do_find_next): Fix -Wall nit.
4504         * include/bits/concept_check.h: Fix multi-line comment.
4505         * testsuite/17_intro/headers.cc (dg-options): Add -Wall -Wsystem-header
4506         when target is *-*-freebsd*.
4507
4508 2003-04-14  Nathan Myers  <ncm@cantrip.org>
4509             Paolo Carlini  <pcarlini@unitus.it>
4510
4511         PR libstdc++/9701 (in_avail())
4512         * include/std/std_streambuf.h (in_avail): Simplify, in_avail
4513         doesn't care if there is anything in some putback cell.
4514         * testsuite/27_io/basic_streambuf/in_avail/char/9701-3.cc: Add.
4515
4516         * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Remove some
4517         unused string literals.
4518
4519 2003-04-14  Paolo Carlini  <pcarlini@unitus.it>
4520
4521         * include/bits/fstream.tcc (basic_filebuf::setbuf): Don't set
4522         _M_out_end, _M_set_indeterminate() does it.
4523
4524 2003-04-12  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4525
4526         * os/hpux/ctype_inline.h: Replace with gnu-linux version.
4527
4528 2003-04-12  David Edelsohn  <edelsohn@gnu.org>
4529
4530         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc:
4531         Change basic_streambuf instantiation to "unsigned char".
4532         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
4533
4534 2003-04-12  Paolo Carlini  <pcarlini@unitus.it>
4535
4536         Remove _M_buf_size_opt, use directly _M_buf_size instead.
4537         * include/bits/fstream.tcc
4538         (basic_filebuf::_M_allocate_internal_buffer, setbuf): Remove
4539         references to _M_buf_size_opt.
4540         * include/bits/sstream.tcc (basic_stringbuf::overflow): Likewise.
4541         * include/bits/streambuf.tcc (__copy_streambufs): Likewise, rename
4542         __bufsize to __in_avail and __size_opt to __buf_size.
4543         * include/ext/stdio_filebuf.h (stdio_filebuf::stdio_filebuf): Likewise.
4544         * include/std/std_sstream.h (_M_stringbuf_init, setbuf): Likewise.
4545         * include/std/std_streambuf.h (~basic_streambuf(),
4546         basic_streambuf()): Likewise, remove _M_buf_size_opt member.
4547         * testsuite/27_io/basic_filebuf/close/char/3.cc: Set _M_buf_size.
4548         * testsuite/27_io/basic_filebuf/in_avail/char/1.cc: Likewise.
4549         * testsuite/27_io/basic_filebuf/sbumpc/char/1.cc: Likewise.
4550         * testsuite/27_io/basic_filebuf/seekoff/char/1.cc: Likewise.
4551         * testsuite/27_io/basic_filebuf/seekpos/char/1.cc: Likewise.
4552         * testsuite/27_io/basic_filebuf/sgetc/char/1.cc: Likewise.
4553         * testsuite/27_io/basic_filebuf/sgetn/char/1.cc: Likewise.
4554         * testsuite/27_io/basic_filebuf/snextc/char/1.cc: Likewise.
4555         * testsuite/27_io/basic_filebuf/sputbackc/char/1.cc: Likewise.
4556         * testsuite/27_io/basic_filebuf/sputc/char/1.cc: Likewise.
4557         * testsuite/27_io/basic_filebuf/sputn/char/1.cc: Likewise.
4558         * testsuite/27_io/basic_filebuf/sungetc/char/1.cc: Likewise.
4559
4560 2003-04-12  Paolo Carlini  <pcarlini at unitus dot it>
4561
4562         * include/ext/stdio_filebuf.h
4563         (stdio_filebuf::stdio_filebuf(int, openmode, bool, size_t),
4564         stdio_filebuf::stdio_filebuf(__c_file*, openmode, size_t):
4565         _M_buf_size_opt == 0 only means "not to use an allocated buffer"
4566         since a stack-based buffer is used for small values of the size_t
4567         parameter.
4568         * include/bits/fstream.tcc (basic_filebuf::_M_really_overflow).
4569         If _M_buf_size != 0 flush out the buffer (any kind, stack-based too).
4570         * testsuite/ext/stdio_filebuf_2.cc: New testfile.
4571
4572 2003-04-12  Paolo Carlini  <pcarlini@unitus.it>
4573
4574         PR libstdc++/9533
4575         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc: New.
4576         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-2.cc: Ditto.
4577
4578 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
4579
4580         * testsuite/22_locale/locale/cons/3.cc: Split.
4581         * testsuite/22_locale/locale/cons/7222-c.cc: New.
4582         * testsuite/22_locale/locale/cons/7222-env.cc: New.
4583         Check before trying to create a locale from the environment.
4584         * testsuite/27_io/ios_base/state/1.cc (test02): Use "C" locale.
4585         * testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc:
4586         Adjust includes.
4587
4588 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
4589
4590         * testsuite/22_locale/ctype/is/char/3.cc (test03): Use the classic
4591         locale to construct this hybrid locale, not the global locale.
4592
4593 2003-04-11  Benjamin Kosnik  <bkoz@redhat.com>
4594
4595         * testsuite/27_io/basic_istream/sentry/char/3983-fstream.cc: Add
4596         instantiation for AIX.
4597         * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
4598         * testsuite/25_algorithms/min_max.cc: Same.
4599
4600 2003-04-10  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4601
4602         * basic_file_stdio.cc (__basic_file<char>::close): Don't flush stream
4603         twice.  Always set _M_cfile to 0 when stream was open.
4604
4605 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
4606
4607         Reshuffle 27_io testsuite.  * testsuite/27_io/filebuf.cc,
4608         filebuf_members-1.tst, filebuf_members-1.txt, filebuf_members.cc,
4609         filebuf_virtuals-1.tst, filebuf_virtuals-1.txt,
4610         filebuf_virtuals-2.tst, filebuf_virtuals-3.tst,
4611         filebuf_virtuals.cc, fpos.cc, fstream.cc, fstream_members.cc,
4612         ifstream.cc, ifstream_members-1.tst, ifstream_members-1.txt,
4613         ifstream_members.cc, instantiations.cc, ios.cc,
4614         ios_base_callbacks.cc, ios_base_members_static-1.tst,
4615         ios_base_members_static.cc, ios_base_storage.cc,
4616         ios_base_types.cc, ios_ctor.cc, ios_init.cc,
4617         ios_manip_basefield.cc, ios_manip_fmtflags.cc, ios_members.cc,
4618         iostream.cc, iostream_members.cc, istream.cc,
4619         istream_exception.cc, istream_extractor_char.cc,
4620         istream_extractor_other-1.tst, istream_extractor_other-1.txt,
4621         istream_extractor_other-2.tst, istream_extractor_other.cc,
4622         istream_manip.cc, istream_seeks-1.tst, istream_seeks-1.txt,
4623         istream_seeks-2.tst, istream_seeks-3.tst, istream_seeks.cc,
4624         istream_sentry.cc, istream_unformatted-1.tst,
4625         istream_unformatted-1.txt, istream_unformatted.cc,
4626         istringstream.cc, istringstream_members.cc,
4627         narrow_stream_objects.cc, ofstream.cc, ofstream_members-1.tst,
4628         ofstream_members.cc, ostream.cc, ostream_exception.cc,
4629         ostream_fail.cc, ostream_inserter_arith.cc,
4630         ostream_inserter_char-1.tst, ostream_inserter_char-1.txt,
4631         ostream_inserter_char.cc, ostream_inserter_other-1.tst,
4632         ostream_inserter_other-2.tst, ostream_inserter_other.cc,
4633         ostream_manip.cc, ostream_seeks-1.tst, ostream_seeks.cc,
4634         ostream_sentry.cc, ostream_unformatted.cc, ostringstream.cc,
4635         ostringstream_members.cc, standard_manipulators.cc, streambuf.cc,
4636         streambuf_members.cc, stringbuf.cc, stringbuf_members.cc,
4637         stringbuf_virtuals.cc, stringstream.cc, stringstream_members.cc,
4638         wide_stream_objects.cc, istream_extractor_arith/01.cc,
4639         istream_extractor_arith/02.cc, istream_extractor_arith/03.cc,
4640         istream_extractor_arith/06.cc, istream_extractor_arith/07.cc,
4641         istream_extractor_arith/08.cc, istream_extractor_arith/09.cc,
4642         istream_extractor_arith/10.cc, istream_extractor_arith/11.cc,
4643         istream_extractor_arith/12.cc, istream_extractor_arith/13.cc:
4644         Split into...
4645         * 27_io/basic_filebuf/1.cc: New.
4646         * 27_io/basic_filebuf/2.cc: New.
4647         * 27_io/basic_filebuf/3.cc: New.
4648         * 27_io/basic_filebuf/4.cc: New.
4649         * 27_io/basic_filebuf/close/char/1.cc: New.
4650         * 27_io/basic_filebuf/close/char/2.cc: New.
4651         * 27_io/basic_filebuf/close/char/3.cc: New.
4652         * 27_io/basic_filebuf/close/char/4879.cc: New.
4653         * 27_io/basic_filebuf/close/char/9964.cc: New.
4654         * 27_io/basic_filebuf/imbue/char/1.cc: New.
4655         * 27_io/basic_filebuf/imbue/char/9322.cc: New.
4656         * 27_io/basic_filebuf/in_avail/char/1.cc: New.
4657         * 27_io/basic_filebuf/is_open/char/1.cc: New.
4658         * 27_io/basic_filebuf/open/char/1.cc: New.
4659         * 27_io/basic_filebuf/open/char/2.cc: New.
4660         * 27_io/basic_filebuf/open/char/3.cc: New.
4661         * 27_io/basic_filebuf/open/char/9507.cc: New.
4662         * 27_io/basic_filebuf/overflow/char/1.cc: New.
4663         * 27_io/basic_filebuf/overflow/char/3599.cc: New.
4664         * 27_io/basic_filebuf/overflow/char/9169.cc: New.
4665         * 27_io/basic_filebuf/overflow/char/9182-2.cc: New.
4666         * 27_io/basic_filebuf/overflow/char/9988.cc: New.
4667         * 27_io/basic_filebuf/sbumpc/char/1.cc: New.
4668         * 27_io/basic_filebuf/sbumpc/char/9825.cc: New.
4669         * 27_io/basic_filebuf/seekoff/char/1.cc: New.
4670         * 27_io/basic_filebuf/seekoff/char/2.cc: New.
4671         * 27_io/basic_filebuf/seekpos/char/1.cc: New.
4672         * 27_io/basic_filebuf/seekpos/char/2.cc: New.
4673         * 27_io/basic_filebuf/setbuf/char/1.cc: New.
4674         * 27_io/basic_filebuf/setbuf/char/2.cc: New.
4675         * 27_io/basic_filebuf/setbuf/char/3.cc: New.
4676         * 27_io/basic_filebuf/sgetc/char/1.cc: New.
4677         * 27_io/basic_filebuf/sgetn/char/1.cc: New.
4678         * 27_io/basic_filebuf/sgetn/char/2.cc: New.
4679         * 27_io/basic_filebuf/snextc/char/1.cc: New.
4680         * 27_io/basic_filebuf/sputbackc/char/1.cc: New.
4681         * 27_io/basic_filebuf/sputbackc/char/9425.cc: New.
4682         * 27_io/basic_filebuf/sputc/char/1.cc: New.
4683         * 27_io/basic_filebuf/sputc/char/1057.cc: New.
4684         * 27_io/basic_filebuf/sputc/char/9701-2.cc: New.
4685         * 27_io/basic_filebuf/sputn/char/1.cc: New.
4686         * 27_io/basic_filebuf/sputn/char/1057.cc: New.
4687         * 27_io/basic_filebuf/sputn/char/9701-1.cc: New.
4688         * 27_io/basic_filebuf/sungetc/char/1.cc: New.
4689         * 27_io/basic_filebuf/sync/char/1057.cc: New.
4690         * 27_io/basic_filebuf/sync/char/9182-1.cc: New.
4691         * 27_io/basic_filebuf/underflow/char/10097.cc: New.
4692         * 27_io/basic_fstream/1.cc: New.
4693         * 27_io/basic_fstream/2.cc: New.
4694         * 27_io/basic_fstream/3.cc: New.
4695         * 27_io/basic_fstream/4.cc: New.
4696         * 27_io/basic_fstream/rdbuf/char/2832.cc: New.
4697         * 27_io/basic_ifstream/1.cc: New.
4698         * 27_io/basic_ifstream/2.cc: New.
4699         * 27_io/basic_ifstream/3.cc: New.
4700         * 27_io/basic_ifstream/4.cc: New.
4701         * 27_io/basic_ifstream/cons/char/1.cc: New.
4702         * 27_io/basic_ifstream/open/char/1.cc: New.
4703         * 27_io/basic_ifstream/rdbuf/char/2832.cc: New.
4704         * 27_io/basic_ios/1.cc: New.
4705         * 27_io/basic_ios/2.cc: New.
4706         * 27_io/basic_ios/3.cc: New.
4707         * 27_io/basic_ios/4.cc: New.
4708         * 27_io/basic_ios/clear/char/1.cc: New.
4709         * 27_io/basic_ios/cons/char/1.cc: New.
4710         * 27_io/basic_ios/cons/char/2.cc: New.
4711         * 27_io/basic_ios/cons/char/3.cc: New.
4712         * 27_io/basic_ios/copyfmt/char/1.cc: New.
4713         * 27_io/basic_ios/copyfmt/char/2.cc: New.
4714         * 27_io/basic_ios/exceptions/char/1.cc: New.
4715         * 27_io/basic_ios/locales/char/1.cc: New.
4716         * 27_io/basic_iostream/1.cc: New.
4717         * 27_io/basic_iostream/2.cc: New.
4718         * 27_io/basic_iostream/3.cc: New.
4719         * 27_io/basic_iostream/4.cc: New.
4720         * 27_io/basic_istream/1.cc: New.
4721         * 27_io/basic_istream/2.cc: New.
4722         * 27_io/basic_istream/3.cc: New.
4723         * 27_io/basic_istream/4.cc: New.
4724         * 27_io/basic_istream/exceptions/char/9561.cc: New.
4725         * 27_io/basic_istream/extractors_arithmetic/char/01.cc: New.
4726         * 27_io/basic_istream/extractors_arithmetic/char/02.cc: New.
4727         * 27_io/basic_istream/extractors_arithmetic/char/03.cc: New.
4728         * 27_io/basic_istream/extractors_arithmetic/char/06.cc: New.
4729         * 27_io/basic_istream/extractors_arithmetic/char/07.cc: New.
4730         * 27_io/basic_istream/extractors_arithmetic/char/08.cc: New.
4731         * 27_io/basic_istream/extractors_arithmetic/char/09.cc: New.
4732         * 27_io/basic_istream/extractors_arithmetic/char/10.cc: New.
4733         * 27_io/basic_istream/extractors_arithmetic/char/11.cc: New.
4734         * 27_io/basic_istream/extractors_arithmetic/char/12.cc: New.
4735         * 27_io/basic_istream/extractors_arithmetic/char/13.cc: New.
4736         * 27_io/basic_istream/extractors_character/char/1.cc: New.
4737         * 27_io/basic_istream/extractors_character/char/2.cc: New.
4738         * 27_io/basic_istream/extractors_character/char/3.cc: New.
4739         * 27_io/basic_istream/extractors_character/char/9826.cc: New.
4740         * 27_io/basic_istream/extractors_other/char/1.cc: New.
4741         * 27_io/basic_istream/extractors_other/char/2.cc: New.
4742         * 27_io/basic_istream/extractors_other/char/3.cc: New.
4743         * 27_io/basic_istream/extractors_other/char/9318-in.cc: New.
4744         * 27_io/basic_istream/extractors_other/char/9424-in.cc: New.
4745         * 27_io/basic_istream/get/char/1.cc: New.
4746         * 27_io/basic_istream/get/char/2.cc: New.
4747         * 27_io/basic_istream/getline/char/1.cc: New.
4748         * 27_io/basic_istream/getline/char/2.cc: New.
4749         * 27_io/basic_istream/getline/char/3.cc: New.
4750         * 27_io/basic_istream/ignore/char/1.cc: New.
4751         * 27_io/basic_istream/ignore/char/6360.cc: New.
4752         * 27_io/basic_istream/ignore/char/7220.cc: New.
4753         * 27_io/basic_istream/peek/char/1.cc: New.
4754         * 27_io/basic_istream/peek/char/6414.cc: New.
4755         * 27_io/basic_istream/putback/char/1.cc: New.
4756         * 27_io/basic_istream/read/char/1.cc: New.
4757         * 27_io/basic_istream/read/char/2.cc: New.
4758         * 27_io/basic_istream/read/char/3.cc: New.
4759         * 27_io/basic_istream/readsome/char/6746-1.cc: New.
4760         * 27_io/basic_istream/readsome/char/6746-2.cc: New.
4761         * 27_io/basic_istream/readsome/char/8258.cc: New.
4762         * 27_io/basic_istream/seekg/char/2346-fstream.cc: New.
4763         * 27_io/basic_istream/seekg/char/2346-sstream.cc: New.
4764         * 27_io/basic_istream/seekg/char/8348-1.cc: New.
4765         * 27_io/basic_istream/seekg/char/8348-2.cc: New.
4766         * 27_io/basic_istream/seekg/char/fstream.cc: New.
4767         * 27_io/basic_istream/seekg/char/sstream.cc: New.
4768         * 27_io/basic_istream/sentry/char/1.cc: New.
4769         * 27_io/basic_istream/sentry/char/2.cc: New.
4770         * 27_io/basic_istream/sentry/char/3.cc: New.
4771         * 27_io/basic_istream/sentry/char/3983-fstream.cc: New.
4772         * 27_io/basic_istream/sentry/char/3983-sstream.cc: New.
4773         * 27_io/basic_istream/tellg/char/1.cc: New.
4774         * 27_io/basic_istream/tellg/char/8348.cc: New.
4775         * 27_io/basic_istream/tellg/char/fstream.cc: New.
4776         * 27_io/basic_istream/tellg/char/sstream.cc: New.
4777         * 27_io/basic_istream/ws/char/1.cc: New.
4778         * 27_io/basic_istringstream/1.cc: New.
4779         * 27_io/basic_istringstream/2.cc: New.
4780         * 27_io/basic_istringstream/3.cc: New.
4781         * 27_io/basic_istringstream/4.cc: New.
4782         * 27_io/basic_istringstream/rdbuf/char/2832.cc: New.
4783         * 27_io/basic_istringstream/str/char/1.cc: New.
4784         * 27_io/basic_ofstream/1.cc: New.
4785         * 27_io/basic_ofstream/2.cc: New.
4786         * 27_io/basic_ofstream/3.cc: New.
4787         * 27_io/basic_ofstream/4.cc: New.
4788         * 27_io/basic_ofstream/cons/char/2.cc: New.
4789         * 27_io/basic_ofstream/open/char/1.cc: New.
4790         * 27_io/basic_ofstream/rdbuf/char/2832.cc: New.
4791         * 27_io/basic_ostream/1.cc: New.
4792         * 27_io/basic_ostream/2.cc: New.
4793         * 27_io/basic_ostream/3.cc: New.
4794         * 27_io/basic_ostream/4.cc: New.
4795         * 27_io/basic_ostream/cons/char/9827.cc: New.
4796         * 27_io/basic_ostream/endl/char/1.cc: New.
4797         * 27_io/basic_ostream/ends/char/1.cc: New.
4798         * 27_io/basic_ostream/ends/char/2.cc: New.
4799         * 27_io/basic_ostream/exceptions/char/9561.cc: New.
4800         * 27_io/basic_ostream/flush/char/1.cc: New.
4801         * 27_io/basic_ostream/inserters_arithmetic/char/1.cc: New.
4802         * 27_io/basic_ostream/inserters_arithmetic/char/2.cc: New.
4803         * 27_io/basic_ostream/inserters_arithmetic/char/3.cc: New.
4804         * 27_io/basic_ostream/inserters_arithmetic/char/4.cc: New.
4805         * 27_io/basic_ostream/inserters_arithmetic/char/4402.cc: New.
4806         * 27_io/basic_ostream/inserters_arithmetic/char/5.cc: New.
4807         * 27_io/basic_ostream/inserters_arithmetic/char/6.cc: New.
4808         * 27_io/basic_ostream/inserters_arithmetic/wchar_t/1.cc: New.
4809         * 27_io/basic_ostream/inserters_character/char/1.cc: New.
4810         * 27_io/basic_ostream/inserters_character/char/2.cc: New.
4811         * 27_io/basic_ostream/inserters_character/char/3.cc: New.
4812         * 27_io/basic_ostream/inserters_character/char/4.cc: New.
4813         * 27_io/basic_ostream/inserters_character/char/5.cc: New.
4814         * 27_io/basic_ostream/inserters_character/char/6.cc: New.
4815         * 27_io/basic_ostream/inserters_character/char/8.cc: New.
4816         * 27_io/basic_ostream/inserters_character/wchar_t/7.cc: New.
4817         * 27_io/basic_ostream/inserters_character/wchar_t/8.cc: New.
4818         * 27_io/basic_ostream/inserters_other/char/1.cc: New.
4819         * 27_io/basic_ostream/inserters_other/char/2.cc: New.
4820         * 27_io/basic_ostream/inserters_other/char/3.cc: New.
4821         * 27_io/basic_ostream/inserters_other/char/4.cc: New.
4822         * 27_io/basic_ostream/inserters_other/char/9318-out.cc: New.
4823         * 27_io/basic_ostream/inserters_other/char/9424-out.cc: New.
4824         * 27_io/basic_ostream/sentry/char/1.cc: New.
4825         * 27_io/basic_ostream/sentry/char/2.cc: New.
4826         * 27_io/basic_ostream/sentry/char/3983-fstream.cc: New.
4827         * 27_io/basic_ostream/sentry/char/3983-sstream.cc: New.
4828         * 27_io/basic_ostream/tellp/char/1.cc: New.
4829         * 27_io/basic_ostream/tellp/char/2.cc: New.
4830         * 27_io/basic_ostringstream/1.cc: New.
4831         * 27_io/basic_ostringstream/2.cc: New.
4832         * 27_io/basic_ostringstream/3.cc: New.
4833         * 27_io/basic_ostringstream/4.cc: New.
4834         * 27_io/basic_ostringstream/cons/char/3.cc: New.
4835         * 27_io/basic_ostringstream/rdbuf/char/2832.cc: New.
4836         * 27_io/basic_ostringstream/str/char/1.cc: New.
4837         * 27_io/basic_ostringstream/str/char/2.cc: New.
4838         * 27_io/basic_streambuf/1.cc: New.
4839         * 27_io/basic_streambuf/2.cc: New.
4840         * 27_io/basic_streambuf/3.cc: New.
4841         * 27_io/basic_streambuf/cons/char/1.cc: New.
4842         * 27_io/basic_streambuf/imbue/char/1.cc: New.
4843         * 27_io/basic_streambuf/imbue/char/9322.cc: New.
4844         * 27_io/basic_streambuf/overflow/char/1.cc: New.
4845         * 27_io/basic_streambuf/overflow/char/2.cc: New.
4846         * 27_io/basic_streambuf/overflow/char/3599.cc: New.
4847         * 27_io/basic_streambuf/sgetc/char/1.cc: New.
4848         * 27_io/basic_streambuf/sgetn/char/1.cc: New.
4849         * 27_io/basic_streambuf/sputbackc/char/9538.cc: New.
4850         * 27_io/basic_streambuf/sputc/char/1057.cc: New.
4851         * 27_io/basic_streambuf/sputn/char/1.cc: New.
4852         * 27_io/basic_streambuf/sputn/char/1057.cc: New.
4853         * 27_io/basic_streambuf/sync/char/1057.cc: New.
4854         * 27_io/basic_stringbuf/1.cc: New.
4855         * 27_io/basic_stringbuf/2.cc: New.
4856         * 27_io/basic_stringbuf/3.cc: New.
4857         * 27_io/basic_stringbuf/4.cc: New.
4858         * 27_io/basic_stringbuf/5.cc: New.
4859         * 27_io/basic_stringbuf/imbue/char/1.cc: New.
4860         * 27_io/basic_stringbuf/imbue/char/9322.cc: New.
4861         * 27_io/basic_stringbuf/in_avail/char/1.cc: New.
4862         * 27_io/basic_stringbuf/overflow/char/2.cc: New.
4863         * 27_io/basic_stringbuf/overflow/char/3599.cc: New.
4864         * 27_io/basic_stringbuf/overflow/char/9988.cc: New.
4865         * 27_io/basic_stringbuf/sbumpc/char/1.cc: New.
4866         * 27_io/basic_stringbuf/sbumpc/char/9825.cc: New.
4867         * 27_io/basic_stringbuf/seekoff/char/1.cc: New.
4868         * 27_io/basic_stringbuf/seekoff/char/2.cc: New.
4869         * 27_io/basic_stringbuf/seekpos/char/1.cc: New.
4870         * 27_io/basic_stringbuf/seekpos/char/2.cc: New.
4871         * 27_io/basic_stringbuf/setbuf/char/1.cc: New.
4872         * 27_io/basic_stringbuf/setbuf/char/2.cc: New.
4873         * 27_io/basic_stringbuf/setbuf/char/3.cc: New.
4874         * 27_io/basic_stringbuf/sgetc/char/1.cc: New.
4875         * 27_io/basic_stringbuf/sgetn/char/1.cc: New.
4876         * 27_io/basic_stringbuf/snextc/char/1.cc: New.
4877         * 27_io/basic_stringbuf/sputbackc/char/1.cc: New.
4878         * 27_io/basic_stringbuf/sputbackc/char/9425.cc: New.
4879         * 27_io/basic_stringbuf/sputc/char/1.cc: New.
4880         * 27_io/basic_stringbuf/sputc/char/1057.cc: New.
4881         * 27_io/basic_stringbuf/sputc/char/9404-1.cc: New.
4882         * 27_io/basic_stringbuf/sputn/char/1.cc: New.
4883         * 27_io/basic_stringbuf/sputn/char/1057.cc: New.
4884         * 27_io/basic_stringbuf/sputn/char/9404-2.cc: New.
4885         * 27_io/basic_stringbuf/str/char/1.cc: New.
4886         * 27_io/basic_stringbuf/str/char/2.cc: New.
4887         * 27_io/basic_stringbuf/str/char/3.cc: New.
4888         * 27_io/basic_stringbuf/str/char/3955.cc: New.
4889         * 27_io/basic_stringbuf/sungetc/char/1.cc: New.
4890         * 27_io/basic_stringbuf/sync/char/1057.cc: New.
4891         * 27_io/basic_stringstream/1.cc: New.
4892         * 27_io/basic_stringstream/2.cc: New.
4893         * 27_io/basic_stringstream/3.cc: New.
4894         * 27_io/basic_stringstream/4.cc: New.
4895         * 27_io/basic_stringstream/rdbuf/char/2832.cc: New.
4896         * 27_io/basic_stringstream/str/char/1.cc: New.
4897         * 27_io/basic_stringstream/str/char/2.cc: New.
4898         * 27_io/basic_stringstream/str/char/3.cc: New.
4899         * 27_io/basic_stringstream/str/char/4.cc: New.
4900         * 27_io/fpos/1.cc: New.
4901         * 27_io/fpos/2.cc: New.
4902         * 27_io/fpos/3.cc: New.
4903         * 27_io/ios_base/callbacks/1.cc: New.
4904         * 27_io/ios_base/state/1.cc: New.
4905         * 27_io/ios_base/storage/1.cc: New.
4906         * 27_io/ios_base/storage/2.cc: New.
4907         * 27_io/ios_base/storage/3.cc: New.
4908         * 27_io/ios_base/sync_with_stdio/1.cc: New.
4909         * 27_io/ios_base/sync_with_stdio/2.cc: New.
4910         * 27_io/manipulators/adjustfield/char/1.cc: New.
4911         * 27_io/manipulators/adjustfield/char/2.cc: New.
4912         * 27_io/manipulators/basefield/char/1.cc: New.
4913         * 27_io/manipulators/standard/char/1.cc: New.
4914         * 27_io/manipulators/standard/char/2.cc: New.
4915         * 27_io/objects/char/1.cc: New.
4916         * 27_io/objects/char/2.cc: New.
4917         * 27_io/objects/char/2523-1_xin.cc: New.
4918         * 27_io/objects/char/2523-1_xin.in: New.
4919         * 27_io/objects/char/2523-2_xin.cc: New.
4920         * 27_io/objects/char/2523-2_xin.in: New.
4921         * 27_io/objects/char/3045.cc: New.
4922         * 27_io/objects/char/3647.cc: New.
4923         * 27_io/objects/char/3_xin.cc: New.
4924         * 27_io/objects/char/3_xin.in: New.
4925         * 27_io/objects/char/4_xin.cc: New.
4926         * 27_io/objects/char/4_xin.in: New.
4927         * 27_io/objects/char/5268.cc: New.
4928         * 27_io/objects/char/5280_xin.cc: New.
4929         * 27_io/objects/char/5280_xin.in: New.
4930         * 27_io/objects/char/6548_xin.cc: New.
4931         * 27_io/objects/char/6548_xin.in: New.
4932         * 27_io/objects/char/6648-1_xin.cc: New.
4933         * 27_io/objects/char/6648-1_xin.in: New.
4934         * 27_io/objects/char/6648-2_xin.cc: New.
4935         * 27_io/objects/char/6648-2_xin.in: New.
4936         * 27_io/objects/char/7744_xin.cc: New.
4937         * 27_io/objects/char/7744_xin.in: New.
4938         * 27_io/objects/wchar_t/1.cc: New.
4939         * 27_io/types/1.cc: New.
4940         * 27_io/types/2.cc: New.
4941         * data/filebuf_members-1.tst: New.
4942         * data/filebuf_members-1.txt: New.
4943         * data/filebuf_virtuals-1.tst: New.
4944         * data/filebuf_virtuals-1.txt: New.
4945         * data/filebuf_virtuals-2.tst: New.
4946         * data/filebuf_virtuals-3.tst: New.
4947         * data/ifstream_members-1.tst: New.
4948         * data/ifstream_members-1.txt: New.
4949         * data/ios_base_members_static-1.tst: New.
4950         * data/istream_extractor_other-1.tst: New.
4951         * data/istream_extractor_other-1.txt: New.
4952         * data/istream_extractor_other-2.tst: New.
4953         * data/istream_seeks-1.tst: New.
4954         * data/istream_seeks-1.txt: New.
4955         * data/istream_seeks-2.tst: New.
4956         * data/istream_seeks-3.tst: New.
4957         * data/istream_unformatted-1.tst: New.
4958         * data/istream_unformatted-1.txt: New.
4959         * data/ofstream_members-1.tst: New.
4960         * data/ostream_inserter_char-1.tst: New.
4961         * data/ostream_inserter_char-1.txt: New.
4962         * data/ostream_inserter_other-1.tst: New.
4963         * data/ostream_inserter_other-2.tst: New.
4964         * data/ostream_seeks-1.tst: New.
4965
4966 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
4967
4968         * include/bits/sstream.tcc (basic_stringbuf::seekpos): Remove
4969         requirement that __mode must be strict input or output.
4970
4971         * include/std/std_streambuf.h (basic_streambuf::setp): Set
4972         _M_out_lim.
4973
4974         * include/std/std_sstream.h (basic_strinbuf::str): Zero length
4975         output string shouldn't core.
4976         (basic_stringbuf::_M_really_sync): Add base argument. Remove rturn
4977         type.
4978         * include/bits/sstream.tcc: Adjust _M_really_sync bits here.
4979
4980         * include/bits/istream.tcc (basic_istream::putback): Set gcount to
4981         zero.
4982
4983 2003-04-09  Benjamin Kosnik  <bkoz@redhat.com>
4984
4985         * testsuite/data: New directory.
4986         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init): Modify
4987         to copy files from the testsuite data directory.
4988         (libstdc++-v3-list-sourcefiles): Add another test list filter, for
4989         testfiles containing _xin, which now means this is an interactive
4990         test and should be run with the interactive dejagnu hooks.
4991         * testsuite/Makefile.am: Remove testsuite_* files.
4992         * testsuite/Makefile.in: Regenerate.
4993
4994 2003-04-09  Zack Weinberg  <zack@codesourcery.com>
4995
4996         * docs/html/install.html: Document complete list of locales
4997         required by test suite.  Document procedure for installing
4998         said locales under Debian.  Solicit instructions for other
4999         operating systems.
5000
5001 2003-04-08  Alexandre Oliva  <aoliva@redhat.com>
5002
5003         * include/bits/sstream.tcc (overflow): Make sure operands of min
5004         and max have the same type.
5005
5006 2003-04-04  Jerry Quinn  <jlquinn@optonline.net>
5007
5008         PR libstdc++/10276
5009         * src/ios.cc (ios_base::_M_init): Remove _M_callbacks
5010         initialization.
5011
5012 2003-03-31  Paolo Carlini  <pcarlini@unitus.it>
5013
5014         * include/std/std_streambuf.h (_M_out_buf_size()): Remove.
5015         * include/bits/fstream.tcc (_M_allocate_internal_buffer):
5016         Don't set _M_out_end.
5017         (basic_filebuf::overflow): Replace _M_out_buf_size() with
5018         this->_M_out_cur && this->_M_out_cur < this->_M_out_end.
5019         * include/bits/sstream.tcc (basic_stringbuf::overflow):
5020         Replace _M_out_buf_size() with this->_M_out_cur < this->_M_out_end;
5021         * include/bits/streambuf.tcc (basic_streambuf::sputc):
5022         Replace _M_out_buf_size() with _M_out_cur && _M_out_cur < _M_out_end.
5023         (basic_streambuf::xsputn): Replace _M_out_buf_size() with
5024         _M_out_end - _M_out_cur.
5025         (__copy_streambufs): Likewise.
5026         * include/std/std_fstream.h (_M_set_determinate): Set
5027         _M_out_end here.
5028
5029 2003-03-30  Paolo Carlini  <pcarlini@unitus.it>
5030
5031         * include/bits/fstream.tcc (basic_filebuf::showmanyc,
5032         _M_convert_to_external, _M_really_overflow, seekoff): Fix
5033         test for synced buffer.
5034         * include/std/std_fstream.h (sync): Likewise.
5035         * src/fstream.cc (basic_filebuf<char>::_M_underflow_common,
5036         basic_filebuf<wchar_t>::_M_underflow_common): Likewise.
5037
5038 2003-03-28  Benjamin Kosnik  <bkoz@redhat.com>
5039
5040         * include/std/std_sstream.h (basic_istringstream): Adjust
5041         initialization.
5042         (basic_ostringstream): Same.
5043         (basic_stringstream): Same.
5044         * include/std/std_fstream.h (basic_ifstream): Adjust initialization.
5045         (basic_ofstream): Same.
5046         (basic_fstream): Same.
5047         * include/std/std_ostream.h (basic_ostrem): Add protected ctor
5048         that does not call init.
5049         * include/std/std_istream.h (basic_istream): Same.
5050         (basic_iostream): Construct istream, ostream uninitialized, use
5051         init to initialize just once. Add protected ctor that does not
5052         call init.
5053
5054 2003-03-28  Paolo Carlini  <pcarlini@unitus.it>
5055             Nathan Myers  <ncm@cantrip.org>
5056
5057         PR libstdc++/9533
5058         * include/bits/fstream.tcc (basic_filebuf<>::open): Don't
5059         call underflow().
5060         (basic_filebuf<>::showmanyc): Use the information provided
5061         by codecvt and __basic_file<>::showmanyc_helper to implement
5062         a non-trivial showmanyc.
5063         * config/io/basic_file_stdio.h
5064         (__basic_file<>::showmanyc_helper): New, declare.
5065         * config/io/basic_file_stdio.cc
5066         (__basic_file<>::showmanyc_helper): Define.
5067         (__basic_file<>::_M_open_mode): Don't set O_NONBLOCK.
5068         (__basic_file<char>::open): Don't call fcntl().
5069         * acinclude.m4 (GLIBCPP_CHECK_S_ISREG_OR_S_IFREG,
5070         GLIBCPP_CHECK_POLL): New macros.
5071         * configure.in: Call here.
5072         * acconfig.h: Add #undefs for the corresponding symbols.
5073         * aclocal.m4: Regenerate.
5074         * configure: Regenerate.
5075         * config.h.in: Regenerate.
5076
5077 2003-03-24  Benjamin Kosnik  <bkoz@redhat.com>
5078
5079         * config/linker-map.gnu: Remove string export restrictions.
5080
5081 2003-03-24  Paolo Carlini  <pcarlini@unitus.it>
5082
5083         * testsuite/21_strings/basic_string/find/char/1.cc: Remove
5084         find_first_of, find_last_of and find_last_not_of tests.
5085         * testsuite/21_strings/basic_string/find/char/2.cc: find_first_of
5086         tests here, new file.
5087         * testsuite/21_strings/basic_string/find/wchar_t/1.cc: Likewise,
5088         remove wchar_t find_first_of, find_last_of and find_last_not_of tests.
5089         * testsuite/21_strings/basic_string/find/wchar_t/2.cc: Likewise,
5090         wchar_t find_first_of tests here, new file.
5091         * testsuite/21_strings/basic_string/rfind/char/2.cc: find_last_of
5092         tests here.
5093         * testsuite/21_strings/basic_string/rfind/char/3.cc: find_last_not_of
5094         tests here.
5095         * testsuite/21_strings/basic_string/rfind/wchar_t/2.cc: likewise,
5096         wchar_t find_last_of tests here.
5097         * testsuite/21_strings/basic_string/rfind/wchar_t/3.cc: likewise,
5098         wchar_t find_last_not_of tests here.
5099
5100 2003-03-22  Loren J. Rittle  <ljrittle@acm.org>
5101
5102         * config/os/hpux/ctype_noninline.h (ctype<char>::classic_table):
5103         Correct return value.
5104
5105 2003-03-21  Jerry Quinn  <jlquinn@optonline.net>
5106
5107         PR libstdc++/5730
5108         * include/bits/c++config (_GLIBCPP_FAST_MATH): Define.
5109         * include/std/std_complex.h (norm):  Use faster,
5110         less accurate computation for builtin float types under --fast-math.
5111
5112 2003-03-21  Magnus Fromreide  <gnats@magfr.user.lysator.liu.se>
5113
5114         * testsuite/testsuite_hooks.h: Fix warning nits.
5115
5116 2003-03-19  Alexandre Oliva  <aoliva@redhat.com>
5117
5118         * config/cpu/mips/atomicity.h (__exchange_and_add, __atomic_add):
5119         Only .set mips2 for the o32 ABI.
5120
5121 2003-03-19  Paolo Carlini  <pcarlini@unitus.it>
5122
5123         * testsuite/21_strings/char_traits/requirements/char/1.cc:
5124         Test char not wchar_t.
5125
5126 2003-03-18  Paolo Carlini  <pcarlini@unitus.it>
5127
5128         * testsuite/21_strings/basic_string/append/wchar_t/1.cc:
5129         Correct size, taking into account sizeof(wchar_t).
5130
5131 2003-03-18  Paolo Carlini  <pcarlini@unitus.it>
5132
5133         Reshuffle 21_strings testsuite.
5134         * testsuite/21_strings/append.cc, c_strings.cc, invariants.cc,
5135         assign.cc, ctor_copy_dtor.cc, nonmember.cc, capacity.cc,
5136         element_access.cc, operations.cc, char_traits_requirements.cc,
5137         find.cc, replace.cc, char_traits_typedefs.cc, insert.cc, rfind.cc,
5138         compare.cc, inserters_extractors.cc, substr.cc: Split up, add
5139         wchar_t tests as follows.
5140         * 21_strings/basic_string/append/char/1.cc: New.
5141         * 21_strings/basic_string/append/wchar_t/1.cc: New.
5142         * 21_strings/basic_string/assign/char/1.cc: New.
5143         * 21_strings/basic_string/assign/char/2.cc: New.
5144         * 21_strings/basic_string/assign/char/3.cc: New.
5145         * 21_strings/basic_string/assign/wchar_t/1.cc: New.
5146         * 21_strings/basic_string/assign/wchar_t/2.cc: New.
5147         * 21_strings/basic_string/assign/wchar_t/3.cc: New.
5148         * 21_strings/basic_string/capacity/1.cc: New.
5149         * 21_strings/basic_string/capacity/char/1.cc: New.
5150         * 21_strings/basic_string/capacity/char/2.cc: New.
5151         * 21_strings/basic_string/capacity/wchar_t/1.cc: New.
5152         * 21_strings/basic_string/capacity/wchar_t/2.cc: New.
5153         * 21_strings/basic_string/compare/char/1.cc: New.
5154         * 21_strings/basic_string/compare/wchar_t/1.cc: New.
5155         * 21_strings/basic_string/cons/char/1.cc: New.
5156         * 21_strings/basic_string/cons/char/2.cc: New.
5157         * 21_strings/basic_string/cons/char/3.cc: New.
5158         * 21_strings/basic_string/cons/char/4.cc: New.
5159         * 21_strings/basic_string/cons/char/5.cc: New.
5160         * 21_strings/basic_string/cons/wchar_t/1.cc: New.
5161         * 21_strings/basic_string/cons/wchar_t/2.cc: New.
5162         * 21_strings/basic_string/cons/wchar_t/3.cc: New.
5163         * 21_strings/basic_string/cons/wchar_t/4.cc: New.
5164         * 21_strings/basic_string/cons/wchar_t/5.cc: New.
5165         * 21_strings/basic_string/element_access/char/1.cc: New.
5166         * 21_strings/basic_string/element_access/char/2.cc: New.
5167         * 21_strings/basic_string/element_access/char/3.cc: New.
5168         * 21_strings/basic_string/element_access/wchar_t/1.cc: New.
5169         * 21_strings/basic_string/element_access/wchar_t/2.cc: New.
5170         * 21_strings/basic_string/element_access/wchar_t/3.cc: New.
5171         * 21_strings/basic_string/find/char/1.cc: New.
5172         * 21_strings/basic_string/find/wchar_t/1.cc: New.
5173         * 21_strings/basic_string/insert/char/1.cc: New.
5174         * 21_strings/basic_string/insert/char/2.cc: New.
5175         * 21_strings/basic_string/insert/wchar_t/1.cc: New.
5176         * 21_strings/basic_string/insert/wchar_t/2.cc: New.
5177         * 21_strings/basic_string/inserters_extractors/char/1.cc: New.
5178         * 21_strings/basic_string/inserters_extractors/char/4.cc: New.
5179         * 21_strings/basic_string/inserters_extractors/char/5.cc: New.
5180         * 21_strings/basic_string/inserters_extractors/char/6.cc: New.
5181         * 21_strings/basic_string/inserters_extractors/char/7.cc: New.
5182         * 21_strings/basic_string/inserters_extractors/char/8.cc: New.
5183         * 21_strings/basic_string/inserters_extractors/char/9.cc: New.
5184         * 21_strings/basic_string/inserters_extractors/wchar_t/1.cc: New.
5185         * 21_strings/basic_string/inserters_extractors/wchar_t/4.cc: New.
5186         * 21_strings/basic_string/inserters_extractors/wchar_t/5.cc: New.
5187         * 21_strings/basic_string/inserters_extractors/wchar_t/6.cc: New.
5188         * 21_strings/basic_string/inserters_extractors/wchar_t/7.cc: New.
5189         * 21_strings/basic_string/inserters_extractors/wchar_t/8.cc: New.
5190         * 21_strings/basic_string/inserters_extractors/wchar_t/9.cc: New.
5191         * 21_strings/basic_string/operators/char/1.cc: New.
5192         * 21_strings/basic_string/operators/char/2.cc: New.
5193         * 21_strings/basic_string/operators/wchar_t/1.cc: New.
5194         * 21_strings/basic_string/operators/wchar_t/2.cc: New.
5195         * 21_strings/basic_string/replace/char/1.cc: New.
5196         * 21_strings/basic_string/replace/char/2.cc: New.
5197         * 21_strings/basic_string/replace/char/3.cc: New.
5198         * 21_strings/basic_string/replace/char/4.cc: New.
5199         * 21_strings/basic_string/replace/char/5.cc: New.
5200         * 21_strings/basic_string/replace/wchar_t/1.cc: New.
5201         * 21_strings/basic_string/replace/wchar_t/2.cc: New.
5202         * 21_strings/basic_string/replace/wchar_t/3.cc: New.
5203         * 21_strings/basic_string/replace/wchar_t/4.cc: New.
5204         * 21_strings/basic_string/replace/wchar_t/5.cc: New.
5205         * 21_strings/basic_string/rfind/char/1.cc: New.
5206         * 21_strings/basic_string/rfind/char/2.cc: New.
5207         * 21_strings/basic_string/rfind/char/3.cc: New.
5208         * 21_strings/basic_string/rfind/wchar_t/1.cc: New.
5209         * 21_strings/basic_string/rfind/wchar_t/2.cc: New.
5210         * 21_strings/basic_string/rfind/wchar_t/3.cc: New.
5211         * 21_strings/basic_string/substr/char/1.cc: New.
5212         * 21_strings/basic_string/substr/wchar_t/1.cc: New.
5213         * 21_strings/c_strings/char/1.cc: New.
5214         * 21_strings/c_strings/char/2.cc: New.
5215         * 21_strings/c_strings/wchar_t/1.cc: New.
5216         * 21_strings/c_strings/wchar_t/2.cc: New.
5217         * 21_strings/char_traits/requirements/char/1.cc: New.
5218         * 21_strings/char_traits/requirements/wchar_t/1.cc: New.
5219         * 21_strings/char_traits/typedefs/char/1.cc: New.
5220
5221 2003-03-17  Paolo Carlini  <pcarlini@unitus.it>
5222             Petur Runolfsson  <peturr02@ru.is>
5223
5224         PR libstdc++/10097
5225         * src/fstream.cc (basic_filebuf<char>::_M_underflow_common,
5226         basic_filebuf<wchar_t>::_M_underflow_common):
5227         if (gptr() < egptr()) return *gptr().
5228         * testsuite/27_io/filebuf_virtuals.cc (test16): Add.
5229
5230         * testsuite/27_io/filebuf_members.cc (test_04): Minor
5231         changes: unlink fifo before making it, fix spelling error.
5232
5233 2003-03-17  Benjamin Kosnik  <bkoz@redhat.com>
5234
5235         * testsuite/Makefile.am (CLEANFILES): Add tmp*.
5236         * testsuite/Makefile.in: Regenerate.
5237         * testsuite/27_io/filebuf_members.cc: Consistently name tmp files.
5238         Cleanups.
5239
5240 2003-03-17  Petur Runolfsson  <peturr02@ru.is>
5241
5242         PR libstdc++/9964
5243         * include/bits/fstream.tcc (basic_filebuf::close):
5244         Always close file, even when write fails.
5245         * testsuite/27_io/filebuf_members.cc (test_07):  New test.
5246
5247 2003-03-17  Danny Smith  <dannysmith@users.sourceforge.net>
5248
5249         * libsupc++/Makefile.am (C_COMPILE): Remove.
5250         (LTCOMPILE): Likewise.
5251         * libsupc++/Makefile.in: Regenerate.
5252
5253 2003-03-14  Benjamin Kosnik  <bkoz@redhat.com>
5254
5255         * testsuite/23_containers/bitset_members.cc: Add test variable.
5256         * testsuite/23_containers/map_insert.cc: Same.
5257         * testsuite/22_locale/ctype/cons/char/1.cc: Same.
5258         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc: Same.
5259         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc: Same.
5260         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc: Same.
5261         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc: Same.
5262         * testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc: Same.
5263         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc: Same.
5264         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc: Same.
5265         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc: Same.
5266         * testsuite/27_io/istream_exception.cc: Same.
5267         * testsuite/27_io/filebuf_virtuals.cc: Same.
5268         * testsuite/27_io/stringbuf_virtuals.cc: Same.
5269         * testsuite/27_io/ostream_inserter_arith.cc: Same.
5270         * testsuite/26_numerics/valarray_operators.cc: Same.
5271         * testsuite/26_numerics/slice.cc: Same.
5272         * testsuite/26_numerics/slice_array_assignment.cc: Same.
5273         * testsuite/24_iterators/istream_iterator.cc: Same.
5274         * mkcheck.in (TESTS_FILE): Use dejagnu-generated file if possible.
5275
5276 2003-03-14  Petur Runolfsson  <peturr02@ru.is>
5277
5278         PR libstdc++/9581
5279         PR libstdc++/9870
5280         * config/locale/generic/ctype_members.cc,
5281         * config/locale/gnu/ctype_members.cc
5282         (ctype<wchar_t>::do_widen(char)):  Cast argument to
5283         unsigned char before passing to btowc.
5284         (ctype<wchar_t>::do_widen(const char*, const char*, wchar_t*)):
5285         Convert characters with btowc instead of mbsrtowcs.
5286         (ctype<wchar_t>::do_narrow(const wchar_t*, const wchar_t*,
5287         char, char*):
5288         Convert characters with wctob instead of wcsrtombs.
5289         * testsuite/22_locale/ctype/narrow/wchar_t/3.cc:  New test.
5290         * testsuite/22_locale/ctype/widen/wchar_t/2.cc:  New test.
5291         * testsuite/22_locale/ctype/widen/wchar_t/3.cc:  New test.
5292
5293 2003-03-14  Benjamin Kosnik  <bkoz@redhat.com>
5294
5295         * include/stdc++.h: New.
5296         * libsupc++/exception_defines.h (__EXCEPTION_DEFINES_H): Add guard.
5297         * include/Makefile.am (stamp-std-precompile): Generate stdc++.h.gch
5298         * include/Makefile.in: Regenerate.
5299         * testsuite_flags.in (--build-cxx): Add, but don't use PCHFLAGS.
5300         (--cxxflags): Put -g -O2 here.
5301         * testsuite/libstdc++-v3.dg/dg.exp: Remove -g -O2 here.
5302
5303 2003-03-14  Loren J. Rittle  <ljrittle@acm.org>
5304
5305         * testsuite/testsuite_hooks.h: Suppress runtime exception thrown by
5306         missing named locale.
5307
5308 2003-03-14  Andreas Schwab  <schwab@suse.de>
5309
5310         * configure.in: Only append to makefiles that are newly created to
5311         avoid multiple multi-do/multi-clean rules.
5312         * configure: Rebuilt.
5313
5314 2003-03-13  Jonathan Wakely  <redi@gcc.gnu.org>
5315
5316         * docs/html/configopts.html, docs/html/documentation.html,
5317         docs/html/explanations.html, docs/html/install.html,
5318         docs/html/19_diagnostics/howto.html, docs/html/faq/index.html: Fix
5319         invalid XHTML and make page header style consistent.
5320
5321 2003-03-12  Jonathan Wakely  <redi@gcc.gnu.org>
5322
5323         * docs/html/faq/index.html: Explain memory "leaks" due to allocators.
5324         * docs/html/faq/index.txt: Regenerate.
5325         * docs/html/debug.html: Add a bit to allocator text and fix XHTML.
5326
5327 2003-03-12  Andreas Schwab  <schwab@suse.de>
5328
5329         * acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Avoid trailing /. in
5330         glibcpp_toolexeclibdir.
5331         * aclocal.m4, configure: Rebuilt.
5332
5333 2003-03-11  Jonathan Wakely  <redi@gcc.gnu.org>
5334
5335         * docs/html/faq/index.html: Update text about location of headers.
5336         * docs/html/faq/index.txt: Regenerate.
5337
5338 2003-03-11  Carlo Wood  <carlo@alinoe.com>
5339
5340         * include/bits/demangle.h: Prepend accessors of
5341         class qualifier with 'get_' in order to fix warnings
5342         when compiling with -Wshadow.
5343
5344 2003-03-11  Loren J. Rittle  <ljrittle@acm.org>
5345
5346         * config/os/bsd/freebsd/ctype_inline.h:  Support _M_table
5347         when so installed.
5348         * testsuite/22_locale/ctype/cons/char/1.cc: Fix typo.
5349
5350         * testsuite/testsuite_hooks.h (run_tests_wrapped_env): Do not
5351         report lack of setenv().
5352
5353 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
5354
5355         * config/io/basic_file_stdio.cc: include <unistd.h>.
5356
5357 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
5358             Nathan Myers  <ncm@cantrip.org>
5359
5360         PR libstdc++/7744
5361         * config/io/basic_file_stdio.h (__basic_file<>::xsgetn, xsputn,
5362         seekoff, seekpos): Add a boolean parameter __stdio.
5363         * config/io/basic_file_stdio.cc (__basic_file<>::xsgetn, xsputn,
5364         seekoff, seekpos): If __stdio == true, use fread (fwrite, fseek/ftell,
5365         fseek/ftell, respectively), otherwise read (write, lseek, lseek,
5366         respectively).
5367         * include/bits/fstream.tcc (basic_filebuf<>::_M_convert_to_external,
5368         _M_really_overflow, seekoff): Use the boolean parameter in the calls.
5369         * include/std/std_fstream.h (sync): Likewise.
5370         * src/fstream.cc (basic_filebuf<>::_M_underflow_common): Likewise.
5371         * src/ios.cc (ios_base::Init::_S_ios_create(bool)): Revert
5372         libstdc++/8399 commit involving isatty(0).
5373         * acinclude.m4 (GLIBCPP_CHECK_UNISTD_DECL_AND_LINKAGE_1): Remove.
5374         (GLIBCPP_CHECK_UNISTD_SUPPORT): Remove
5375         * configure.in: Remove call.
5376         * aclocal.m4: Regenerate.
5377         * config.h.in: Regenerate.
5378         * configure: Regenerate.
5379         * testsuite/27_io/narrow_stream_objects.cc (test11): Add.
5380
5381 2003-03-09  Paolo Carlini  <pcarlini@unitus.it>
5382
5383         PR libstdc++/9988
5384         * include/bits/fstream.tcc (overflow): don't write EOF to file.
5385         * testsuite/27_io/filebuf_virtuals.cc (test15): Add.
5386
5387 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
5388
5389         PR libstdc++/9561
5390         * include/bits/basic_ios.h (_M_setstate): New.
5391         * include/bits/ostream.tcc (operator<<): Use it.
5392         * include/bits/istream.tcc (operator>>): Use it.
5393         * include/std/std_ostream.h (operator<<): Make friends.
5394         * include/std/std_istream.h (operator>>): Make friends.
5395         * testsuite/27_io/ostream_exception.cc,
5396         testsuite/27_io/istream_exception.cc: New tests.
5397
5398 2003-03-08  Benjamin Kosnik  <bkoz@redhat.com>
5399
5400         * include/bits/locale_facets.tcc: Fix typo.
5401
5402 2003-03-08  Loren J. Rittle  <ljrittle@acm.org>
5403
5404         * testsuite/26_numerics/c99_classification_macros_c.cc: Tweak test.
5405
5406         * config/locale/generic/c_locale.cc
5407         (locale::facet::_S_create_c_locale): Throw runtime exception when
5408         unsupported language is specified.
5409         * testsuite/testsuite_hooks.h
5410         (run_test_wrapped_generic_locale_exception_catcher): New function.
5411         * testsuite/testsuite_hooks.cc (run_tests_wrapped_locale):
5412         Suppress runtime exception thrown by generic implementation.
5413         (run_tests_wrapped_env): Likewise.
5414         (run_test_wrapped_generic_locale_exception_catcher): New function.
5415         * testsuite/22_locale/collate/compare/char/1.cc: New test wrap.
5416         * testsuite/22_locale/collate/compare/char/2.cc: New test wrap.
5417         * testsuite/22_locale/collate/compare/char/3.cc: New test wrap.
5418         * testsuite/22_locale/collate/hash/char/2.cc: New test wrap.
5419         * testsuite/22_locale/collate/transform/char/2.cc: New test wrap.
5420         * testsuite/22_locale/collate/transform/char/3.cc: New test wrap.
5421         * testsuite/22_locale/collate_byname/1.cc: New test wrap.
5422         * testsuite/22_locale/ctype/is/char/2.cc: New test wrap.
5423         * testsuite/22_locale/facet/2.cc: New test wrap.
5424         * testsuite/22_locale/locale/cons/4.cc: New test wrap.
5425         * testsuite/22_locale/locale/cons/5.cc: New test wrap.
5426         * testsuite/22_locale/locale/cons/7.cc: New test wrap.
5427         * testsuite/22_locale/messages/members/char/1.cc: New test wrap.
5428         * testsuite/22_locale/messages/members/char/2.cc: New test wrap.
5429         * testsuite/22_locale/messages/members/char/3.cc: New test wrap.
5430         * testsuite/22_locale/messages_byname/1.cc: New test wrap.
5431         * testsuite/22_locale/money_get/get/char/1.cc: New test wrap.
5432         * testsuite/22_locale/money_get/get/char/2.cc: New test wrap.
5433         * testsuite/22_locale/money_get/get/char/3.cc: New test wrap.
5434         * testsuite/22_locale/money_get/get/char/4.cc: New test wrap.
5435         * testsuite/22_locale/money_put/put/char/1.cc: New test wrap.
5436         * testsuite/22_locale/money_put/put/char/2.cc: New test wrap.
5437         * testsuite/22_locale/money_put/put/char/3.cc: New test wrap.
5438         * testsuite/22_locale/moneypunct/members/char/2.cc: New test wrap.
5439         * testsuite/22_locale/moneypunct_byname/1.cc: New test wrap.
5440         * testsuite/22_locale/num_get/get/char/1.cc: New test wrap.
5441         * testsuite/22_locale/num_get/get/char/2.cc: New test wrap.
5442         * testsuite/22_locale/num_get/get/char/3.cc: New test wrap.
5443         * testsuite/22_locale/num_get/get/char/5.cc: New test wrap.
5444         * testsuite/22_locale/num_get/get/char/6.cc: New test wrap.
5445         * testsuite/22_locale/num_put/put/char/1.cc: New test wrap.
5446         * testsuite/22_locale/num_put/put/char/2.cc: New test wrap.
5447         * testsuite/22_locale/num_put/put/char/3.cc: New test wrap.
5448         * testsuite/22_locale/num_put/put/char/5.cc: New test wrap.
5449         * testsuite/22_locale/numpunct/members/char/1.cc: New test wrap.
5450         * testsuite/22_locale/numpunct/members/char/2.cc: New test wrap.
5451         * testsuite/22_locale/numpunct_byname/1.cc: New test wrap.
5452         * testsuite/22_locale/numpunct_byname/2.cc: New test wrap.
5453         * testsuite/22_locale/time_get/date_order/char/1.cc: New test wrap.
5454         * testsuite/22_locale/time_get/get_date/char/1.cc: New test wrap.
5455         * testsuite/22_locale/time_get/get_date/char/2.cc: New test wrap.
5456         * testsuite/22_locale/time_get/get_monthname/char/1.cc: New test wrap.
5457         * testsuite/22_locale/time_get/get_monthname/char/2.cc: New test wrap.
5458         * testsuite/22_locale/time_get/get_time/char/1.cc: New test wrap.
5459         * testsuite/22_locale/time_get/get_time/char/2.cc: New test wrap.
5460         * testsuite/22_locale/time_get/get_weekday/char/1.cc: New test wrap.
5461         * testsuite/22_locale/time_get/get_weekday/char/2.cc: New test wrap.
5462         * testsuite/22_locale/time_get/get_year/char/1.cc: New test wrap.
5463         * testsuite/22_locale/time_put/put/char/1.cc: New test wrap.
5464         * testsuite/22_locale/time_put/put/char/2.cc: New test wrap.
5465         * testsuite/22_locale/time_put/put/char/3.cc: New test wrap.
5466         * testsuite/22_locale/time_put/put/char/4.cc: New test wrap.
5467         * testsuite/22_locale/time_put/put/char/5.cc: New test wrap.
5468         * testsuite/22_locale/time_put/put/char/6.cc: New test wrap.
5469         * testsuite/22_locale/time_put/put/char/7.cc: New test wrap.
5470         * testsuite/22_locale/time_put/put/char/8.cc: New test wrap.
5471         * testsuite/27_io/filebuf_virtuals.cc: New test wrap.
5472         * testsuite/27_io/ios_members.cc: New test wrap.
5473         * testsuite/27_io/ostream_inserter_arith.cc (test02): Make void.
5474         New test wrap.
5475         * testsuite/27_io/streambuf_members.cc: New test wrap.
5476         * testsuite/27_io/stringbuf_virtuals.cc: New test wrap.
5477
5478 2003-03-08  Paolo Carlini <pcarlini@unitus.it>
5479             Petur Runolfsson  <peturr02@ru.is>
5480
5481         PR libstdc++/9424
5482         * include/bits/streambuf.tcc (__copy_streambufs): Use
5483         sgetn-sputn only when sputn cannot fail, otherwise fall back
5484         to safe snextc-sputc.
5485         * testsuite/27_io/streambuf_members.cc (test11, test12): Add.
5486
5487 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
5488
5489         * include/bits/locale_facets.tcc (num_put::do_put(bool)): Use
5490         locale cache for truename and falsename.
5491
5492 2003-03-08  Jerry Quinn  <jlquinn@optonline.net>
5493
5494         * src/ios.cc (ios_base::ios_base): Correct order of _M_word and
5495         _M_word_size initialization.
5496
5497 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
5498
5499         * include/bits/fstream.tcc (_M_convert_to_external):
5500         Set __elen to zero if codecvt::out eventually fails.
5501
5502 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
5503
5504         PR libstdc++/9182
5505         * include/bits/fstream.tcc (_M_really_overflow): Check
5506         for _M_convert_to_external possible failures.
5507         * include/std/std_fstream.h (sync): Check _M_really_overflow
5508         return value and return -1 in case of failure.
5509         * testsuite/27_io/filebuf_virtuals.cc (test13, test14): Add.
5510
5511 2003-03-07  Paolo Carlini  <pcarlini@unitus.it>
5512
5513         PR libstdc++/9826
5514         * include/bits/istream.tcc (operator>>(_CharT*),
5515         operator>>(basic_string&), ws): Pass a char_type to __ctype.is.
5516         * testsuite/27_io/stringstream.cc (test02): Add.
5517
5518         * include/bits/istream.tcc (operator>>(_CharT*)):
5519         Assign a char_type to *__s.
5520
5521 2003-03-07  Petur Runolfsson  <peturr02@ru.is>
5522
5523         PR libstdc++/9817
5524         * include/bits/locale_facets.tcc
5525         (collate::do_compare, collate::do_transform):
5526         Handle nul characters in input.
5527         * testsuite/22_locale/collate/compare/char/3.cc:  New test.
5528         * testsuite/22_locale/collate/compare/wchar_t/3.cc:  New test.
5529         * testsuite/22_locale/collate/transform/char/3.cc:  New test.
5530         * testsuite/22_locale/collate/transform/wchar_t/3.cc:  New test.
5531
5532 2003-03-07  Jerry Quinn  <jlquinn@optonline.net>
5533
5534         * include/bits/streambuf_iterator.h (_M_put): Set _M_failed if
5535         sputn fails.
5536         * testsuite/27_io/ostream_fail.cc: New test.
5537
5538 2003-03-07  Matthias Klose  <doko@debian.org>
5539
5540         * Makefile.am (AM_MAKEFLAGS): Also pass gxx_include_dir.
5541         FLAGS_TO_PASS: Set to AM_MAKEFLAGS
5542         * Makefile.in: Regenerate.
5543         * libsupc++/Makefile.am: Express glibcppinstalldir in terms
5544         of gxx_include_dir.
5545         AM_MAKEFLAGS: Pass gxx_include_dir.
5546         * libsupc++/Makefile.in: Regenerate.
5547
5548 2003-03-06  Jerry Quinn  <jlquinn@optonline.net>
5549
5550         * testsuite/27_io/ios_base_storage.cc (test02): Set exception
5551         mask.  Test setting small-numbered pword and iword slots.  Test
5552         behavior at limit of numeric_limits::max.  Check that values are
5553         still good after failures.
5554
5555 2003-03-06  Jerry Quinn  <jlquinn@optonline.net>
5556
5557         * src/ios.cc (ios_base::_M_init): Remove _M_word_size.
5558         (ios_base::ios_base): Set _M_word, _M_word_size.
5559         (ios_base::~ios_base): Remove redundant test.
5560         * testsuite/27_io/ios_base_storage.cc (test03): New.
5561
5562 2003-03-04  Alexandre Oliva  <aoliva@redhat.com>
5563
5564         * src/strstream.cc, include/bits/basic_string.tcc: Remove
5565         incorrect whitespace added in my previous change.
5566
5567 2003-03-05  Carlo Wood  <carlo@alinoe.com>
5568
5569         * include/bits/ios_base.h(ios_base::Init::_S_initialized()): Added
5570         _S_initialized() in order to allow debugging libraries to detect
5571         when the std streams are initialized from an overloaded operator
5572         new.
5573
5574 2003-03-05  Benjamin Kosnik  <bkoz@redhat.com>
5575
5576         * libsupc++/demangle.h: Move to..
5577         * include/bits/demangle.h: ...here.
5578         * src/demangle.cc: Adjust include.
5579         * include/Makefile.am (bits_headers): Add.
5580         * include/Makefile.in: Regenerate.
5581
5582 2003-03-04  Benjamin Kosnik  <bkoz@redhat.com>
5583
5584         * src/globals.cc: Clarify comments, remove c_locale_imp_compat.
5585
5586         * config/linker-map.gnu: Filter typeinfo and vtable info.
5587
5588 2003-03-04  Jerry Quinn  <jlquinn@optonline.net>
5589
5590         * src/ios.cc (ios_base::_M_grow_words): Don't delete _M_word on
5591         new failure.  Throw exception if badbit and exception mask when ix
5592         >= numeric_limits<int>::max().
5593
5594 2003-03-04  Alexandre Oliva  <aoliva@redhat.com>
5595
5596         * src/strstream.cc (strstreambuf::overflow): Make sure operands of
5597         min and max have the same type.
5598         * include/bits/basic_string.tcc (append, rfind, compare): Likewise.
5599
5600 2003-03-04  Benjamin Kosnik  <bkoz@redhat.com>
5601
5602         * include/Makefile.am (allstamps): Remove stamp-std-precompile.
5603         * include/Makefile.in: Regenerate.
5604
5605 2003-03-03  Benjamin Kosnik  <bkoz@redhat.com>
5606
5607         * testsuite/abi_check.cc (report_symbol_info): Add version info.
5608
5609         * config/linker-map.gnu: Hide more stuff.
5610         * include/Makefile.am: Cleanups.
5611         * include/Makefile.in: Regenerate.
5612
5613 2003-02-27  Jerry Quinn  <jlquinn@optonline.net>
5614
5615         * config/locale/generic/messages_members.h (messages::messages):
5616         Remove name from unused parameter.
5617
5618 2003-02-27  Benjamin Kosnik  <bkoz@redhat.com>
5619
5620         * src/Makefile.am (sources): Add demangle.cc.
5621         (demangle.o): Add.
5622         (demangle.lo): Add.
5623         * src/Makefile.in: Regenerate.
5624         * libsupc++/Makefile.am: Remove old __cxa_demangle bits.
5625         * libsupc++/Makefile.in: Regenerate.
5626
5627         * testsuite/testsuite_hooks.h
5628         (__gnu_cxx_test::verify_demangle): New.
5629         * testsuite/testsuite_hooks.cc: Define.
5630
5631 2003-02-27  Carlo Wood  <carlo@alinoe.com>
5632
5633         * src/demangle.cc: New.
5634         * libsupc++/demangle.h: New.
5635
5636 2003-02-27  Benjamin Kosnik  <bkoz@redhat.com>
5637             Carlo Wood  <carlo@alinoe.com>
5638
5639         * testsuite/demangle/abi_examples/01.cc: New.
5640         * testsuite/demangle/abi_examples/02.cc: New.
5641         * testsuite/demangle/abi_examples/03.cc: New.
5642         * testsuite/demangle/abi_examples/04.cc: New.
5643         * testsuite/demangle/abi_examples/05.cc: New.
5644         * testsuite/demangle/abi_examples/06.cc: New.
5645         * testsuite/demangle/abi_examples/07.cc: New.
5646         * testsuite/demangle/abi_examples/08.cc: New.
5647         * testsuite/demangle/abi_examples/09.cc: New.
5648         * testsuite/demangle/abi_examples/10.cc: New.
5649         * testsuite/demangle/abi_examples/11.cc: New.
5650         * testsuite/demangle/abi_examples/12.cc: New.
5651         * testsuite/demangle/abi_examples/13.cc: New.
5652         * testsuite/demangle/abi_examples/14.cc: New.
5653         * testsuite/demangle/abi_examples/15.cc: New.
5654         * testsuite/demangle/abi_examples/16.cc: New.
5655         * testsuite/demangle/abi_examples/17.cc: New.
5656         * testsuite/demangle/abi_examples/18.cc: New.
5657         * testsuite/demangle/abi_examples/19.cc: New.
5658         * testsuite/demangle/abi_examples/20.cc: New.
5659         * testsuite/demangle/abi_examples/21.cc: New.
5660         * testsuite/demangle/abi_examples/22.cc: New.
5661         * testsuite/demangle/abi_examples/23.cc: New.
5662         * testsuite/demangle/abi_examples/24.cc: New.
5663         * testsuite/demangle/abi_examples/25.cc: New.
5664         * testsuite/demangle/abi_examples/26.cc: New.
5665         * testsuite/demangle/abi_text/01.cc: New.
5666         * testsuite/demangle/abi_text/02.cc: New.
5667         * testsuite/demangle/abi_text/03.cc: New.
5668         * testsuite/demangle/abi_text/04.cc: New.
5669         * testsuite/demangle/abi_text/05.cc: New.
5670         * testsuite/demangle/abi_text/06.cc: New.
5671         * testsuite/demangle/abi_text/07.cc: New.
5672         * testsuite/demangle/abi_text/08.cc: New.
5673         * testsuite/demangle/abi_text/09.cc: New.
5674         * testsuite/demangle/abi_text/10.cc: New.
5675         * testsuite/demangle/abi_text/11.cc: New.
5676         * testsuite/demangle/abi_text/12.cc: New.
5677         * testsuite/demangle/abi_text/13.cc: New.
5678         * testsuite/demangle/abi_text/14.cc: New.
5679         * testsuite/demangle/regression/3111-1.cc: New.
5680         * testsuite/demangle/regression/3111-2.cc: New.
5681         * testsuite/demangle/regression/7986-01.cc: New.
5682         * testsuite/demangle/regression/7986-02.cc: New.
5683         * testsuite/demangle/regression/7986-03.cc: New.
5684         * testsuite/demangle/regression/7986-04.cc: New.
5685         * testsuite/demangle/regression/7986-05.cc: New.
5686         * testsuite/demangle/regression/7986-06.cc: New.
5687         * testsuite/demangle/regression/7986-07.cc: New.
5688         * testsuite/demangle/regression/7986-08.cc: New.
5689         * testsuite/demangle/regression/7986-09.cc: New.
5690         * testsuite/demangle/regression/7986-10.cc: New.
5691         * testsuite/demangle/regression/7986-11.cc: New.
5692         * testsuite/demangle/regression/7986-12.cc: New.
5693         * testsuite/demangle/regression/7986.cc: New.
5694         * testsuite/demangle/regression/8897.cc: New.
5695         * testsuite/demangle/regression/cw-01.cc: New.
5696         * testsuite/demangle/regression/cw-02.cc: New.
5697         * testsuite/demangle/regression/cw-03.cc: New.
5698         * testsuite/demangle/regression/cw-04.cc: New.
5699         * testsuite/demangle/regression/cw-05.cc: New.
5700         * testsuite/demangle/regression/cw-06.cc: New.
5701         * testsuite/demangle/regression/cw-07.cc: New.
5702         * testsuite/demangle/regression/cw-08.cc: New.
5703         * testsuite/demangle/regression/cw-09.cc: New.
5704         * testsuite/demangle/regression/cw-10.cc: New.
5705         * testsuite/demangle/regression/cw-11.cc: New.
5706         * testsuite/demangle/regression/cw-12.cc: New.
5707         * testsuite/demangle/regression/cw-13.cc: New.
5708         * testsuite/demangle/regression/cw-14.cc: New.
5709         * testsuite/demangle/regression/old.cc: New.
5710
5711 2003-02-25  Phil Edwards  <pme@gcc.gnu.org>
5712
5713         * docs/doxygen/Intro.3:  Update with new (proper) names.
5714         * docs/doxygen/TODO:  Update.
5715         * docs/doxygen/run_doxygen:  More comments, fix up man pages.
5716         Fake entries for standard typedefs.
5717         * docs/doxygen/user.cfg.in:  Turn INLINE_INHERITED_MEMB back on.
5718         * docs/html/documentation.html:  Top-level man page is now called
5719         C++Intro.
5720         * include/std/std_limits.h:  Doxygenate.
5721
5722 2003-02-25  Scott Snyder  <snyder@fnal.gov>
5723
5724         PR libstdc++/9811
5725         * include/bits/stl_map.h (lower_bound, upper_bound, equal_range):
5726         Correct documentation.
5727         * include/bits/stl_multimap.h (lower_bound, upper_bound,
5728         equal_range): Likewise.
5729
5730 2003-02-24  Paolo Carlini  <pcarlini@unitus.it>
5731
5732         PR libstdc++/9825
5733         * src/fstream.cc
5734         (basic_filebuf<char/wchar_t>::_M_underflow_common): When
5735         __bump is true (uflow), always increment the read pointer
5736         (_M_in_cur) before returning successfully.
5737         * testsuite/27_io/filebuf_virtuals.cc (test12): Add.
5738
5739 2003-02-24  Paolo Carlini <pcarlini@unitus.it>
5740             Nathan Myers <ncm@cantrip.org>
5741
5742         PR libstdc++/9404, PR libstdc++/9701 (partial)
5743         (aka pptr == epptr implies overflow)
5744         * include/bits/fstream.tcc (_M_allocate_internal_buffer):
5745         Consistently, _M_out_end points to the end of the buffer just
5746         created.
5747         (overflow): Tweak to use _M_out_buf_size().
5748         (_M_convert_to_external): The role of the old _M_out_end is
5749         now played by _M_out_lim.
5750         (_M_really_overflow): Likewise.
5751         (seekoff): Likewise.
5752         (setbuf): _M_out_end points to the end of the external buffer.
5753         * include/bits/sstream.tcc (overflow): Rewrote, taking into
5754         account the resolution of DR 169 (TC).
5755         (seekoff): Use _M_string.capacity(); ios_base::end is now _M_out_lim.
5756         (seekpos): Use _M_string.capacity(); tweak.
5757         * include/bits/streambuf.tcc (sputc, xsputn): Remove comments.
5758         * include/std/std_fstream.h (sync): The role of the old
5759         _M_out_end is now played by _M_out_lim.
5760         (_M_set_indeterminate): Use _M_set_determinate.
5761         (_M_set_determinate): _M_out_end is now _M_out_lim.
5762         (_M_is_indeterminate): Likewise.
5763         * include/std/std_sstream.h (str()): _M_out_end is now _M_out_lim.
5764         (_M_stringbuf_init): Don't set _M_buf_size, unused for sstreams,
5765         which have the information readily available as _M_string.capacity();
5766         for ate and app modes, pass the string size to _M_really_sync.
5767         (_M_really_sync): Consistently set _M_out_end and _M_out_lim, to
5768         point to the end of the buffer (i.e., epptr) and to the string end,
5769         respectively.
5770         * include/std/std_streambuf.h: tweak comments, add _M_out_lim,
5771         which points to the right limit of the used put area.
5772         (_M_out_cur_move): The role of the old _M_out_end is now played
5773         by _M_out_lim.
5774         (_M_out_buf_size): Simplify: now (when _M_out_cur) return simply
5775         _M_out_end  - _M_out_cur (i.e., pptr), _very_ close to the letter
5776         of the standard.
5777         (basic_streambuf()): Initialize _M_out_lim too.
5778         * testsuite/27_io/filebuf_virtuals.cc (test10): Trivial tweak.
5779         * testsuite/27_io/filebuf_virtuals.cc (test11): Add.
5780         * testsuite/27_io/stringbuf_virtuals.cc (test09): Add.
5781
5782 2003-02-24  Benjamin Kosnik  <bkoz@redhat.com>
5783
5784         * testsuite/27_io/ios_base_storage.cc (main): Call
5785         set_memory_limits.
5786
5787 2003-02-21  Jerry Quinn  <jlquinn@optonline.net>
5788
5789         * include/bits/locale_facets.tcc (_M_convert_float): Replace
5790         numpunct facet accesses with data from __locale_cache.
5791
5792 2003-02-20  Phil Edwards  <pme@gcc.gnu.org>
5793
5794         * docs/html/faq/index.html (3.9):  New note, wchar_t on FreeBSD.
5795         * docs/html/faq/index.txt:  Regenerate.
5796
5797 2003-02-20  Phil Edwards  <pme@gcc.gnu.org>
5798
5799         * config/linker-map.gnu:  Also export locking symbols needed for the
5800         generic atomicity.h case.
5801
5802 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
5803
5804         * configure.in: Propagate ORIGINAL_LD_FOR_MULTILIBS to
5805         config.status.
5806         * configure: Rebuilt.
5807
5808 2003-02-19  Paolo Carlini  <pcarlini@unitus.it>
5809
5810         * include/bits/sstream.tcc (overflow): According to
5811         27.7.1.3, p5, actual output is performed by sputc(c).
5812
5813 2003-02-19  Phil Edwards  <pme@gcc.gnu.org>
5814
5815         PR libstdc++/9582
5816         * include/bits/stl_alloc.h:  Remove all traces of assert().
5817
5818 2003-02-18  Paolo Carlini  <pcarlini@unitus.it>
5819
5820         * include/std/std_sstream.h (str()): the size of the
5821         current string may be different from the initial one
5822         whenever _M_out_end > _M_out_beg.
5823         * testsuite/27_io/stringbuf_members.cc (test07): Add.
5824
5825 2003-02-18  Paolo Carlini  <pcarlini@unitus.it>
5826
5827         PR libstdc++/9582
5828         * include/bits/stl_alloc.h (__pool_alloc::allocate): Remove assert.
5829
5830 2003-02-17  Benjamin Kosnik  <bkoz@redhat.com>
5831
5832         * include/bits/basic_ios.tcc (copyfmt): Copy locale data as well.
5833         * testsuite/27_io/ios_members.cc (test03): New.
5834
5835 2003-02-17  Jerry Quinn  <jlquinn@optonline.net>
5836
5837         * include/bits/basic_ios.h (basic_ios::_M_cache_locale): Declare.
5838         (basic_ios::_M_cache_facets): Move into above.
5839         * include/bits/basic_ios.tcc (basic_ios::copyfmt): Rebuild locale
5840         cache.
5841         (basic_ios::imbue): Force locale cache to be built.
5842         (basic_ios::_M_init): Create and initialize locale cache.
5843         * include/bits/ios_base.h (__locale_cache_base): Declare.
5844         (ios_base::_M_locale_cache): New.
5845         (ios_base::_M_cache): Define.
5846         * include/bits/locale_facets.h: (__num_base): Fix comment.  Add
5847         _S_end.
5848         (__locale_cache_base,__locale_cache<_CharT>):  New classes.
5849         (__locale_cache<char>, __locale_cache<wchar_t>): New specializations.
5850         * include/bits/locale_facets.tcc (num_put::_M_convert_int): Use locale
5851         cache literal string, grouping flag, thousands separator.
5852         (__locale_cache<_CharT>::__locale_cache): New.
5853         (__locale_cache<_CharT>::_M_init): New.
5854         * src/ios.cc: Clear _M_locale_cache in constructor.
5855         * src/locale-inst.cc (__locale_cache<char>, __locale_cache<_char_t>):
5856         New.
5857
5858 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
5859
5860         * src/locale-inst.cc: Do not include <cassert>.
5861         * src/locale.cc: Likewise.
5862
5863 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
5864
5865         PR libstdc++/9580
5866         * include/std/std_fstream.h: Declare underflow and uflow
5867         specializations, change generic definitions to do nothing.
5868         * src/fstream.cc: Add underflow and uflow specializations.
5869
5870 2003-02-17  Paolo Carlini  <pcarlini@unitus.it>
5871
5872         PR libstdc++/9169
5873         * include/bits/fstream.tcc (_M_convert_to_external):
5874         Deal correctly with noconv, as prescribed by 27.8.1.4,p8.
5875         * testsuite/27_io/filebuf_virtuals.cc (test10): Add.
5876
5877 2003-02-13  Benjamin Kosnik  <bkoz@redhat.com>
5878
5879         * include/bits/c++config (_GLIBCPP_EXTERN_TEMPLATE): Define.
5880         * include/bits/basic_ios.tcc: Guard use of extern template.
5881         * include/std/std_iomanip.h: Same.
5882         * include/bits/streambuf.tcc: Same.
5883         * include/bits/stl_alloc.h: Same.
5884         * include/bits/locale_facets.tcc: Same.
5885         * include/bits/ostream.tcc: Same.
5886         * include/bits/istream.tcc: Same.
5887         * include/bits/fstream.tcc: Same.
5888         * include/bits/basic_string.tcc: Same.
5889
5890 2003-02-13  Paolo Carlini  <pcarlini@unitus.it>
5891
5892         * include/bits/ostream.tcc (sentry::sentry): Improve
5893         performance-wise the fix for libstdc++/9563.
5894
5895 2003-02-12  Phil Edwards  <pme@gcc.gnu.org>
5896
5897         * config/cpu/generic/atomicity.h (_Atomic_add_mutex):  Fix declaration.
5898         (_GLIBCPP_NEED_GENERIC_MUTEX):  Define for this file.
5899         (_Atomic_add_mutex_once, __gthread_atomic_add_mutex_once):  Declare
5900         when we don't have static mutex initialization.
5901         (__exchange_and_add):  Use _Atomic_add_mutex_once.
5902         * src/misc-inst.cc:  Definitions of all the above.
5903
5904 2003-02-12  Paolo Carlini  <pcarlini@unitus.it>
5905
5906         PR libstdc++/9563
5907         * include/bits/ostream.tcc (sentry::sentry): Check
5908         the state of the stream after the preparation.
5909         * testsuite/27_io/ostream_sentry.cc (test02): Add.
5910
5911 2003-02-11  Benjamin Kosnik  <bkoz@redhat.com>
5912
5913         * include/Makefile.am (stamp-std-precompile): Add rule.
5914         * include/Makefile.in: Regenerated.
5915
5916 2003-02-11 Jerry Quinn  <jlquinn@optonline.net>
5917            Benjamin Kosnik  <benjamin@redhat.com>
5918
5919         * include/bits/locale_facets.h (__num_base): Add _S_atoms_out.
5920         Add indexes into this array.
5921         (__num_base::_S_atoms): To _S_atoms_in.
5922         (num_put::_M_insert): Rename to _M_pad.
5923         (num_put::_M_convert_int): Adjust remove __mod, __modl arguments.
5924         (num_put::_M_widen_int): Rename to _M_group_int.
5925         (num_put::_M_widen_float): Rename to _M_group_float.
5926         * include/bits/locale_facets.tcc (__int_to_char): New inline
5927         function and adapter functions.
5928         (num_put::_M_group_int): Streamline.
5929         (num_put::_M_group_float): Streamline.
5930         (num_put::_M_convert_int): Remove unused parameter names. Choose
5931         large enough buffer for text.  Use __int_to_char instead of
5932         __convert_from_v.  Formatted text is now at the end of the buffer.
5933         (num_put::_M_convert_float): Preliminary fixups.
5934         * src/locale-inst.cc (__convert_from_v<long long>): Add ifdef.
5935         (__int_to_char<unsigned long long>): Same.
5936         (__int_to_char<char, unsigned long>): New.
5937         (__int_to_char<char, unsigned long long>): New.
5938         (__int_to_char<wchar_t, unsigned long>): New.
5939         (__int_to_char<wchar_t, unsigned long long>): New.
5940
5941 2003-02-11  Scott Snyder  <snyder@fnal.gov>
5942
5943         PR libstdc++/9659
5944         * include/bits/fstream.tcc (seekoff): Avoid operator+
5945         for pos_type.
5946
5947 2003-02-11  Paolo Carlini  <pcarlini@unitus.it>
5948
5949         PR libstdc++/9320
5950         * include/ext/stdio_filebuf.h
5951         (stdio_filebuf(int, std::ios_base::openmode, bool, int_type),
5952         stdio_filebuf(std::__c_file*, std::ios_base::openmode, int_type)):
5953         Change to take a __size parameter of type size_t, not
5954         of type (template parameter dependent) int_type.
5955         * src/ios.cc (ios_base::Init::_S_ios_create): Change type of
5956         size vars to size_t.
5957         * testsuite/ext/stdio_filebuf.cc: Add.
5958
5959 2003-02-11  Paolo Carlini  <pcarlini@unitus.it>
5960             Petur Runolfsson  <peturr02@ru.is>
5961
5962         PR libstdc++/9318
5963         * include/bits/streambuf.tcc (__copy_streambufs):
5964         Don't conditionalize the copy to __testput.
5965         * testsuite/27_io/streambuf_members.cc (test09, test10): Add.
5966
5967 2002-02-11  DJ Delorie  <dj@redhat.com>
5968
5969         * acinclude.m4: Check for native targets that can't link at
5970         this point in the build.
5971         * aclocal.m4: Regenerate.
5972         * configure: Regenerate.
5973
5974 2003-02-08  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5975
5976         * hppa/atomicity.h (__Atomicity_lock<__inst>::_S_atomicity_lock):
5977         Correct alignment.
5978         (__exchange_and_add, __atomic_add): Use PA 2.0 ordered store to reset
5979         lock.
5980
5981 2003-02-07  Paolo Carlini  <pcarlini@unitus.it>
5982
5983         * testsuite/27_io/filebuf_virtuals.cc (test08): Fix for
5984         unsigned char platforms.
5985
5986 2003-02-06  Paolo Carlini  <pcarlini@unitus.it>
5987
5988         PR libstdc++/9562
5989         * include/std/std_istream.h
5990         (basic_istream::sentry::operator bool()): Make const.
5991         * include/std/std_ostream.h
5992         (basic_ostream::sentry::operator bool()): Likewise.
5993         * testsuite/27_io/istream_sentry.cc (test03): Add.
5994         * testsuite/27_io/ostream_sentry.cc: Add.
5995
5996 2003-02-06  Paolo Carlini  <pcarlini@unitus.it>
5997
5998         PR libstdc++/9548
5999         Implement resolution of DR 231 (Ready)
6000         * include/bits/locale_facets.h (__num_base::_S_format_float):
6001         Change declaration: return void, remove __prec parameter.
6002         * src/locale.cc (__num_base::_S_format_float): Implement
6003         resolution of DR 231.
6004         * include/bits/locale_facets.tcc (num_put::_M_convert_float):
6005         Tweak uses. Check for negative precision.
6006         * testsuite/22_locale/num_put/put/char/6.cc: Add
6007         * testsuite/22_locale/num_put/put/wchar_t/6.cc: Likewise.
6008
6009 2003-02-06  Peter Soetens  <peter.soetens@mech.kuleuven.ac.be>
6010
6011         * config/io/basic_file_libio.h: Fixups.
6012         * config/io/c_io_libio.h: Same.
6013         * libio/Makefile.am: Same.
6014         * libio/Makefile.in: Regenerated.
6015
6016 2003-02-06  Benjamin Kosnik  <bkoz@redhat.com>
6017
6018         * testsuite/22_locale/codecvt/encoding/wchar_t/1.cc (test01):
6019         Explicitly use the "C" locale.
6020         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc (test01): Same.
6021
6022 2003-02-06  Petur Runolfsson  <peturr02@ru.is>
6023
6024         DR 75
6025         DR 305
6026         PR libstdc++/9028 (partial)
6027         PR libstdc++/9224
6028         PR libstdc++/9246
6029         PR libstdc++/9247
6030
6031         * src/codecvt.cc
6032         (codecvt<wchar_t, char, mbstate_t>::do_encoding,
6033         codecvt<wchar_t, char, mbstate_t>::do_length,
6034         codecvt<wchar_t, char, mbstate_t>::do_max_length):
6035         Move...
6036         * config/locale/generic/codecvt_members.cc:  ...here.
6037         * config/locale/gnu/codecvt_members.cc:  ...and here.
6038
6039         * config/locale/generic/codecvt_members.cc,
6040         * config/locale/gnu/codecvt_members.cc
6041         (codecvt<wchar_t, char, mbstate_t>::do_encoding
6042         codecvt<wchar_t, char, mbstate_t>::do_in,
6043         codecvt<wchar_t, char, mbstate_t>::do_length,
6044         codecvt<wchar_t, char, mbstate_t>::do_max_length,
6045         codecvt<wchar_t, char, mbstate_t>::do_out):
6046         New implementation that handles stateless encodings,
6047         including UTF-8.
6048
6049         * config/locale/generic/codecvt_members.cc,
6050         * config/locale/gnu/codecvt_members.cc,
6051         * config/locale/ieee_1003.1-2001/codecvt_specializations.h,
6052         * include/bits/codecvt.h,
6053         * src/codecvt.cc
6054         (codecvt::length, codecvt::do_length):
6055         Change type of first argument of length and do_length from
6056         'const state_type&' to 'state_type&' according to DR 75.
6057
6058         * testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc:  Cleanup.
6059         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc:  New test.
6060         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc:  New test.
6061         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc:  New test.
6062         * testsuite/22_locale/codecvt/encoding/wchar_t/1.cc:
6063         Cleanup and check for correct return value from encoding
6064         for "C" locale.
6065         * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc:  New test.
6066         * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc:  New test.
6067         * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc:  New test.
6068         * testsuite/22_locale/codecvt/in/wchar_t/1.cc:  Cleanup.
6069         * testsuite/22_locale/codecvt/in/wchar_t/2.cc:  New test.
6070         * testsuite/22_locale/codecvt/in/wchar_t/3.cc:  New test.
6071         * testsuite/22_locale/codecvt/in/wchar_t/4.cc:  New test.
6072         * testsuite/22_locale/codecvt/in/wchar_t/5.cc:  New test.
6073         * testsuite/22_locale/codecvt/in/wchar_t/6.cc:  New test.
6074         * testsuite/22_locale/codecvt/in/wchar_t/7.cc:  New test.
6075         * testsuite/22_locale/codecvt/in/wchar_t/8.cc:  New test.
6076         * testsuite/22_locale/codecvt/in/wchar_t/9.cc:  New test.
6077         * testsuite/22_locale/codecvt/length/char/1.cc:  Cleanup.
6078         * testsuite/22_locale/codecvt/length/char/2.cc:  New test.
6079         * testsuite/22_locale/codecvt/length/wchar_t/1.cc:  Cleanup.
6080         * testsuite/22_locale/codecvt/length/wchar_t/2.cc:  New test.
6081         * testsuite/22_locale/codecvt/length/wchar_t/3.cc:  New test.
6082         * testsuite/22_locale/codecvt/length/wchar_t/4.cc:  New test.
6083         * testsuite/22_locale/codecvt/length/wchar_t/5.cc:  New test.
6084         * testsuite/22_locale/codecvt/length/wchar_t/6.cc:  New test.
6085         * testsuite/22_locale/codecvt/length/wchar_t/7.cc:  New test.
6086         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc:  Cleanup.
6087         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc:  New test.
6088         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc:  New test.
6089         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc:  New test.
6090         * testsuite/22_locale/codecvt/out/wchar_t/1.cc:  Cleanup.
6091         * testsuite/22_locale/codecvt/out/wchar_t/2.cc:  New test.
6092         * testsuite/22_locale/codecvt/out/wchar_t/3.cc:  New test.
6093         * testsuite/22_locale/codecvt/out/wchar_t/4.cc:  New test.
6094         * testsuite/22_locale/codecvt/out/wchar_t/5.cc:  New test.
6095         * testsuite/22_locale/codecvt/out/wchar_t/6.cc:  New test.
6096         * testsuite/22_locale/codecvt/out/wchar_t/7.cc:  New test.
6097         * testsuite/22_locale/codecvt/unicode/1.cc:  New test.
6098         * testsuite/22_locale/codecvt/unshift/wchar_t/1.cc:  Cleanup.
6099         * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc:  New test.
6100         * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc:  New test.
6101         * testsuite/22_locale/codecvt/unshfit/wchar_t/4.cc:  New test.
6102
6103 2003-02-05  Benjamin Kosnik  <bkoz@redhat.com>
6104
6105         * include/bits/locale_facets.tcc (time_put::do_put): Use __write.
6106         (money_put::do_put): Same.
6107
6108 2003-02-05  Jerry Quinn  <jlquinn@optonline.net>
6109
6110         * include/bits/ios_base.h (ios_base): Document reserved storage.
6111
6112         * include/bits/locale_facets.h: (struct __pad): Comment on
6113         implementation.
6114         (__verify_grouping): Same.
6115         (__add_grouping): Same.
6116         * include/bits/locale_facets.tcc (__verify_grouping): Move
6117         comments to declaration.
6118         (__add_grouping): Same.
6119
6120         * include/bits/locale_facets.tcc:
6121         (__write<_CharT, _OutIter>): New function.
6122         (__write<_CharT>): New function specialization.
6123         (num_put::_M_insert): Remove explicit loop over iterator.  Use
6124         __write.
6125         (num_put::_M_widen_float): Remove __basefield.
6126         (num_put::_M_widen_int): Move __basefield to within grouping block.
6127
6128         * include/bits/streambuf_iterator.h: Include <streambuf>.
6129         (ostreambuf_iterator::_M_put): Add.
6130
6131 2003-02-05  Paolo Carlini  <pcarlini@unitus.it>
6132
6133         * testsuite/26_numerics/valarray_name_lookup.cc: Fix typo.
6134
6135 2003-02-04  Nathan Myers  <ncm@cantrip.org>
6136
6137         * testsuite/25_algorithms/min_max.cc (test02): Add.
6138
6139 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
6140
6141         PR libstdc++/9439, PR libstdc++/9425
6142         * config/io/basic_file_stdio.cc
6143         (__basic_file<char>::seekoff, seekpos): Return -1L if
6144         fseek fails.
6145         * include/bits/fstream.tcc (basic_filebuf::seekoff):
6146         Check _M_file.seekoff return value; always return
6147         pos_type(off_type(-1)) in case of failure.
6148         (basic_filebuf::pbackfail): Check this->seekoff return
6149         value and return traits_type::eof() in case of failure.
6150         * testsuite/27_io/filebuf_virtuals.cc (test09): Add.
6151
6152 2003-02-04  Jerry Quinn  <jlquinn@optonline.net>
6153
6154         * include/std/std_ostream.h (ostream::_M_write): Declare.
6155         * ostream.tcc (ostream::_M_write): Define.
6156         (basic_ostream::write): Use it.
6157         (operator<<(basic_ostream, _CharT)): Ditto.
6158         (operator<<(basic_ostream, char)): Ditto.
6159         (operator<<(basic_ostream, _CharT*)): Ditto.
6160         (operator<<(basic_ostream, char*)): Ditto.
6161         (operator<<(basic_ostream, basic_string)): Ditto.
6162
6163 2003-02-04  Benjamin Kosnik  <bkoz@redhat.com>
6164
6165         * testsuite/26_numerics/valarray_name_lookup.cc: Fix.
6166
6167 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
6168
6169         * docs/html/27_io/howto.html: Link to Dietmar Kuehl's IOStream page,
6170         add HTML comment about updating links if numbering changes.
6171
6172 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
6173
6174         PR libstdc++/9538
6175         * include/bits/streambuf.tcc (sputbackc): Access
6176         this->gptr()[-1] only if _M_in_beg < _M_in_cur.
6177         * testsuite/27_io/filebuf_virtuals.cc (test08): Add.
6178
6179 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
6180
6181         PR libstdc++/9507
6182         * include/bits/fstream.tcc (open): If the 'ate' repositioning
6183         operation fails, calls close _and_ returns a null pointer
6184         to indicate failure (27.8.1.3,4).
6185         * testsuite/27_io/filebuf_members.cc (test_06): Add.
6186
6187 2003-02-04  Petur Runolfsson  <peturr02@ru.is>
6188
6189         * testsuite/27_io/filebuf_members.cc (test_04): Remove exit(0).
6190
6191 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
6192
6193         * docs/html/27_io/howto.html: New section on stdio_filebuf.
6194         * docs/html/ext/howto.html: Move stdio_filebuf notes to 27_io.
6195         * docs/html/documentation.html: Regenerate.
6196
6197 2003-02-04  Joseph S. Myers  <jsm@polyomino.org.uk>
6198
6199         * docs/html/17_intro/porting.texi: Update to GFDL 1.2.
6200         * docs/html/17_intro/porting.html: Regenerate.
6201
6202 2003-02-03  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
6203             Phil Edwards  <pme@gcc.gnu.org>
6204
6205         * include/std/std_bitset.h:  Replace CHAR_BIT with __CHAR_BIT__, use
6206         numeric_limits for bits-per-word values.
6207         (_Base_bitset::_M_do_count, _Base_bitset<1>::_M_do_count):
6208         Use __builtin_popcountl instead.
6209         (_Base_bitset::_M_do_find_first, _Base_bitset::_M_do_find_next,
6210         _Base_bitset<1>::_M_do_find_first, _Base_bitset<1>::_M_do_find_next):
6211         Use __builtin_ctzl instead.
6212         (_S_bit_count, _S_first_one):  Remove.
6213         * config/linker-map.gnu (GLIBCPP_3.4):  Remove std::_S_bit_count.
6214         * src/Makefile.am (sources):  Remove bitset.cc.
6215         * src/bitset.cc:  Delete file.
6216         * src/Makefile.in:  Regenerate.
6217
6218 2003-02-03  Phil Edwards  <pme@gcc.gnu.org>
6219
6220         PR libstdc++/9527, PR libstdc++/8713
6221         * docs/html/install.html:  Mention glibc version requirement.
6222         * docs/html/faq/index.html (3.8):  New note, glibc 2.2.5+ is needed
6223         with 3.2.1+ (formatting bugfixes).
6224         * docs/html/faq/index.txt:  Regenerate.
6225
6226 2003-02-03  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
6227
6228         PR libstdc++/9234
6229         * include/bits/valarray_before.h (_UnBase::operator[]): Apply unary
6230         operator.
6231
6232         * include/bits/valarray_before.h (__not_equal_to): Use != instead
6233         of ==.
6234
6235         * testsuite/26_numerics/valarray_operators.cc: New test.
6236
6237 2003-02-01  Phil Edwards  <pme@gcc.gnu.org>
6238
6239         * docs/html/faq/index.html:  Correct link to libg++ information.
6240         * docs/html/faq/index.txt:  Regenerated.
6241
6242 2003-02-01  Paolo Carlini  <pcarlini@unitus.it>
6243             Benjamin Kosnik  <bkoz@redhat.com>
6244
6245         Const correctness issue:
6246         http://gcc.gnu.org/ml/libstdc++/2003-01/msg00370.html
6247         * include/bits/locale_classes.h
6248         (locale::_Impl::_M_facets): Change type to const facet**.
6249         (locale::_Impl::_M_install_facet): Change declaration to
6250         take const facet*.
6251         (locale::facet::_M_references): Make mutable.
6252         (locale::facet::_M_add_reference): Declare const.
6253         (locale::facet::_M_remove_reference): Likewise.
6254         * include/bits/locale_facets.tcc
6255         (use_facet(const locale&)): Tweak for const facet** _M_facets.
6256         (has_facet(const locale&)): Likewise.
6257         * src/locale.cc
6258         (locale::facet::_M_add_reference): Adjust definition.
6259         (locale::facet::_M_remove_reference): Likewise.
6260         * src/localename.cc
6261         (locale::_Impl::_Impl(const _Impl&, size_t)): Tweak for
6262         const facet** _M_facets.
6263         (locale::_Impl::_Impl(const char*, size_t)): Likewise.
6264         (locale::_Impl::_Impl(facet**, size_t, bool)): Likewise.
6265         (locale::_Impl::_M_install_facet): Adjust definition to take
6266         const facet* and for const facet** _M_facets.
6267         * testsuite/22_locale/locale/cons/8.cc: Add.
6268
6269 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
6270
6271         * include/std/std_limits.h (numeric_limits<float>::has_infinity):
6272         Use __FLT_HAS_INIFINITY__ to initialize.
6273         (numeric_limits<float>::has_quiet_NaN): Likewise.
6274         (numeric_limits<double>::has_infinity): Use __DBL_HAS_INIFINITY__
6275         to initialize.
6276         (numeric_limits<double>::has_quiet_NaN): Likewise.
6277         (numeric_limits<long double>::has_infinity): Use
6278         __LDBL_HAS_INIFINITY__ to initialize.
6279         (numeric_limits<long_double>::has_quiet_NaN): Likewise.
6280
6281 2003-01-28  Nathan Sidwell  <nathan@codesourcery.com>
6282
6283         PR c++/9433
6284         * libsupc++/tinfo.cc (__vmi_class_type_info::__do_dyncast): Cope
6285         with bases which are very ambiguous.
6286
6287 2003-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
6288
6289         * src/Makefile.am (CONFIG_CXXFLAGS): Reverse order of
6290         @EXTRA_CXX_FLAGS@ @SECTION_FLAGS@.
6291         * libsupc++/Makefile.am (CONFIG_CXXFLAGS): Likewise.
6292         * src/Makefile.in: Regenerate.
6293         * libsupc++/Makefile.in: Regenerate.
6294
6295 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
6296
6297         * acinclude.m4 (glibcpp_toolexeclibdir): Instead of
6298         $(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
6299         version_specific_libs is enabled.
6300         * aclocal.m4, configure: Rebuilt.
6301
6302 2003-01-24  Nathan Sidwell  <nathan@codesourcery.com>
6303
6304         * include/bits/valarray_meta.h: Remove, split into ...
6305         * include/bits/valarray_before.h: ... this, and ...
6306         * include/bits/valarray_after.h: ... this.
6307         * include/std/std_valarray.h: Adjust.
6308         * include/Makefile.am (bits_headers): Adjust.
6309         * include/Makefile.in: Regenerate.
6310
6311 2003-01-24  Andreas Schwab  <schwab@suse.de>
6312
6313         * config/linker-map.gnu: Fix for size_t variance.
6314
6315 2003-01-23  Petur Runolfsson  <peturr02@ru.is>
6316
6317         PR libstdc++/9322
6318         * include/std/std_streambuf.h
6319         (basic_streambuf::basic_streambuf,
6320         basic_streambuf::~basic_streambuf,
6321         basic_streambuf::getloc, basic_streambuf::imbue):
6322         Remove _M_buf_locale_init
6323         * include/bits/fstream.tcc (basic_filebuf::imbue):  Likewise
6324         * testsuite/27_io/filebuf_virtuals.cc (test08):  Add.
6325         * testsuite/27_io/streambuf_members.cc (test08):  Add.
6326         * testsuite/27_io/stringbuf_virtuals.cc (test08):  Add.
6327
6328 2003-01-23  Benjamin Kosnik  <bkoz@redhat.com>
6329
6330         Revert include ordering.
6331         * config/locale/generic/c_locale.h: Add include guards.
6332         * config/locale/gnu/c_locale.h: Same.
6333         * include/bits/locale_classes.h: Remove cctype include.
6334         * include/std/std_iosfwd.h: Add c++locale.h, cctype includes.
6335         * include/std/std_fstream.h: Remove streambuf include.
6336         * include/std/std_sstream.h: Remove streambuf include.
6337
6338 2003-01-23  Benjamin Kosnik  <bkoz@redhat.com>
6339
6340         * configure.in (libtool_VERSION): To 6:0:0.
6341         * configure: Regenerated.
6342         * config/linker-map.gnu: Clean.
6343
6344         * src/misc-inst.cc: Remove instantiations.
6345
6346         * include/bits/stl_alloc.h (__malloc_alloc_template):
6347         To __malloc_alloc.
6348         (__default_alloc_template): To __pool_alloc.
6349         * src/stl-inst.cc: Same.
6350         * include/backward/alloc.h: Update.
6351         * testsuite/ext/allocators.cc: Update.
6352
6353         * src/globals.cc (__gnu_cxx): Remove _GLIBCPP_ASM_SYMVER. Should
6354         really try to remove these if possible.
6355         * src/locale.cc (std): Same.
6356
6357         * testsuite/abi_check.cc (check_version): Add.
6358
6359 2003-01-22  Benjamin Kosnik  <bkoz@redhat.com>
6360             Sysoltsev Slawa  <Vyatcheslav.Sysoltsev@intel.com>
6361             Mark Mitchell  <mark@codesourcery.com>
6362
6363         PR libstdc++/9269
6364         * include/std/std_fstream.h (basic_filebuf::uflow): Declare.
6365         (basic_filebuf::underflow): Declare.
6366         Move definitions.
6367
6368 2003-01-22  Benjamin Kosnik  <bkoz@redhat.com>
6369
6370         * include/bits/locale_facets.h: Move non-facet classes requiring
6371         <string> to...
6372         * include/bits/locale_classes.h: New.
6373         * include/bits/Makefile.am (bits_headers_src): Add locale_classes.h.
6374         * include/bits/Makefile.in: Regenerate.
6375
6376         * include/bits/locale_facets.tcc (__convert_from_v): Move to...
6377         * config/locale/gnu/c_locale.h: ...here.
6378         * config/locale/generic/c_locale.h: Same.
6379
6380         * include/bits/locale_facets.tcc: Move declarations to...
6381         * include/bits/locale_facets.h: ...here.
6382         * include/bits/basic_ios.h: Tweak includes accordingly.
6383         * include/std/std_sstream.h: Add streambuf include.
6384         * include/std/std_fstream.h: Ditto.
6385         * include/std/std_locale.h: Add locale_classes.h include.
6386         * include/std/std_iosfwd.h: Tweak.
6387         * src/concept-inst.cc: Add iterator include.
6388
6389         * config/linker-map.gnu: Specify __cxa functions, mark __cxa_dyn_*
6390         bits as unexported in the future.
6391
6392 2003-01-21  Benjamin Kosnik  <bkoz@redhat.com>
6393
6394         Reshuffle 22_locale testsuite.
6395         * 22_locale/(codecvt.cc money_get.cc
6396         codecvt_members_char_char.cc money_get_members_char.cc
6397         codecvt_members_unicode_char.cc money_get_members_wchar_t.cc
6398         codecvt_members_unicode_wchar_t.cc moneypunct_byname.cc
6399         codecvt_members_wchar_t_char.cc moneypunct.cc collate_byname.cc
6400         moneypunct_members_char.cc collate.cc moneypunct_members_wchar_t.cc
6401         collate_members_char.cc money_put.cc collate_members_wchar_t.cc
6402         money_put_members_char.cc ctor_copy_dtor.cc
6403         money_put_members_wchar_t.cc ctype.cc num_get.cc ctype_is_char.cc
6404         num_get_members_char.cc ctype_is_wchar_t.cc num_get_members_wchar_t.cc
6405         ctype_members_char.cc numpunct_byname.cc ctype_members_wchar_t.cc
6406         numpunct.cc ctype_narrow_char.cc numpunct_members_char.cc
6407         ctype_narrow_wchar_t.cc numpunct_members_wchar_t.cc ctype_scan_char.cc
6408         num_put.cc ctype_scan_wchar_t.cc num_put_members_char.cc
6409         ctype_to_char.cc num_put_members_wchar_t.cc ctype_to_wchar_t.cc
6410         operators.cc ctype_widen_char.cc static_members.cc
6411         ctype_widen_wchar_t.cc time_get.cc facet.cc time_get_members_char.cc
6412         global_templates.cc time_get_members_wchar_t.cc, members.cc,
6413         time_put.cc, messages_byname.cc, time_put_members_char.cc,
6414         messages.cc, time_put_members_wchar_t.cc, messages_members_char.cc):
6415         Split up into individual test cases...
6416         * 22_locale/codecvt/1.cc: New.
6417         * 22_locale/codecvt/2.cc: New.
6418         * 22_locale/codecvt/always_noconv/char/1.cc: New.
6419         * 22_locale/codecvt/always_noconv/char/wrapped_env.cc: New.
6420         * 22_locale/codecvt/always_noconv/char/wrapped_locale.cc: New.
6421         * 22_locale/codecvt/always_noconv/wchar_t/1.cc: New.
6422         * 22_locale/codecvt/always_noconv/wchar_t/wrapped_env.cc: New.
6423         * 22_locale/codecvt/always_noconv/wchar_t/wrapped_locale.cc: New.
6424         * 22_locale/codecvt/encoding/char/1.cc: New.
6425         * 22_locale/codecvt/encoding/char/wrapped_env.cc: New.
6426         * 22_locale/codecvt/encoding/char/wrapped_locale.cc: New.
6427         * 22_locale/codecvt/encoding/wchar_t/1.cc: New.
6428         * 22_locale/codecvt/encoding/wchar_t/wrapped_env.cc: New.
6429         * 22_locale/codecvt/encoding/wchar_t/wrapped_locale.cc: New.
6430         * 22_locale/codecvt/in/char/1.cc: New.
6431         * 22_locale/codecvt/in/char/wrapped_env.cc: New.
6432         * 22_locale/codecvt/in/char/wrapped_locale.cc: New.
6433         * 22_locale/codecvt/in/wchar_t/1.cc: New.
6434         * 22_locale/codecvt/in/wchar_t/wrapped_env.cc: New.
6435         * 22_locale/codecvt/in/wchar_t/wrapped_locale.cc: New.
6436         * 22_locale/codecvt/length/char/1.cc: New.
6437         * 22_locale/codecvt/length/char/wrapped_env.cc: New.
6438         * 22_locale/codecvt/length/char/wrapped_locale.cc: New.
6439         * 22_locale/codecvt/length/wchar_t/1.cc: New.
6440         * 22_locale/codecvt/length/wchar_t/wrapped_env.cc: New.
6441         * 22_locale/codecvt/length/wchar_t/wrapped_locale.cc: New.
6442         * 22_locale/codecvt/max_length/char/1.cc: New.
6443         * 22_locale/codecvt/max_length/char/wrapped_env.cc: New.
6444         * 22_locale/codecvt/max_length/char/wrapped_locale.cc: New.
6445         * 22_locale/codecvt/max_length/wchar_t/1.cc: New.
6446         * 22_locale/codecvt/max_length/wchar_t/wrapped_env.cc: New.
6447         * 22_locale/codecvt/max_length/wchar_t/wrapped_locale.cc: New.
6448         * 22_locale/codecvt/out/char/1.cc: New.
6449         * 22_locale/codecvt/out/char/wrapped_env.cc: New.
6450         * 22_locale/codecvt/out/char/wrapped_locale.cc: New.
6451         * 22_locale/codecvt/out/wchar_t/1.cc: New.
6452         * 22_locale/codecvt/out/wchar_t/wrapped_env.cc: New.
6453         * 22_locale/codecvt/out/wchar_t/wrapped_locale.cc: New.
6454         * 22_locale/codecvt/unicode/char.cc: New.
6455         * 22_locale/codecvt/unicode/wchar_t.cc: New.
6456         * 22_locale/codecvt/unshift/char/1.cc: New.
6457         * 22_locale/codecvt/unshift/char/wrapped_env.cc: New.
6458         * 22_locale/codecvt/unshift/char/wrapped_locale.cc: New.
6459         * 22_locale/codecvt/unshift/wchar_t/1.cc: New.
6460         * 22_locale/codecvt/unshift/wchar_t/wrapped_env.cc: New.
6461         * 22_locale/codecvt/unshift/wchar_t/wrapped_locale.cc: New.
6462         * 22_locale/collate/1.cc: New.
6463         * 22_locale/collate/2.cc: New.
6464         * 22_locale/collate/compare/char/1.cc: New.
6465         * 22_locale/collate/compare/char/2.cc: New.
6466         * 22_locale/collate/compare/char/wrapped_env.cc: New.
6467         * 22_locale/collate/compare/char/wrapped_locale.cc: New.
6468         * 22_locale/collate/compare/wchar_t/1.cc: New.
6469         * 22_locale/collate/compare/wchar_t/2.cc: New.
6470         * 22_locale/collate/compare/wchar_t/wrapped_env.cc: New.
6471         * 22_locale/collate/compare/wchar_t/wrapped_locale.cc: New.
6472         * 22_locale/collate/hash/char/1.cc: New.
6473         * 22_locale/collate/hash/char/2.cc: New.
6474         * 22_locale/collate/hash/char/wrapped_env.cc: New.
6475         * 22_locale/collate/hash/char/wrapped_locale.cc: New.
6476         * 22_locale/collate/hash/wchar_t/1.cc: New.
6477         * 22_locale/collate/hash/wchar_t/2.cc: New.
6478         * 22_locale/collate/hash/wchar_t/wrapped_env.cc: New.
6479         * 22_locale/collate/hash/wchar_t/wrapped_locale.cc: New.
6480         * 22_locale/collate/transform/char/2.cc: New.
6481         * 22_locale/collate/transform/char/wrapped_env.cc: New.
6482         * 22_locale/collate/transform/char/wrapped_locale.cc: New.
6483         * 22_locale/collate/transform/wchar_t/2.cc: New.
6484         * 22_locale/collate/transform/wchar_t/wrapped_env.cc: New.
6485         * 22_locale/collate/transform/wchar_t/wrapped_locale.cc: New.
6486         * 22_locale/collate_byname/1.cc: New.
6487         * 22_locale/ctype/1.cc: New.
6488         * 22_locale/ctype/2.cc: New.
6489         * 22_locale/ctype/cons/char/1.cc: New.
6490         * 22_locale/ctype/cons/char/wrapped_env.cc: New.
6491         * 22_locale/ctype/cons/char/wrapped_locale.cc: New.
6492         * 22_locale/ctype/is/char/1.cc: New.
6493         * 22_locale/ctype/is/char/2.cc: New.
6494         * 22_locale/ctype/is/char/3.cc: New.
6495         * 22_locale/ctype/is/char/wrapped_env.cc: New.
6496         * 22_locale/ctype/is/char/wrapped_locale.cc: New.
6497         * 22_locale/ctype/is/wchar_t/1.cc: New.
6498         * 22_locale/ctype/is/wchar_t/2.cc: New.
6499         * 22_locale/ctype/is/wchar_t/wrapped_env.cc: New.
6500         * 22_locale/ctype/is/wchar_t/wrapped_locale.cc: New.
6501         * 22_locale/ctype/narrow/char/1.cc: New.
6502         * 22_locale/ctype/narrow/char/2.cc: New.
6503         * 22_locale/ctype/narrow/char/wrapped_env.cc: New.
6504         * 22_locale/ctype/narrow/char/wrapped_locale.cc: New.
6505         * 22_locale/ctype/narrow/wchar_t/1.cc: New.
6506         * 22_locale/ctype/narrow/wchar_t/2.cc: New.
6507         * 22_locale/ctype/narrow/wchar_t/wrapped_env.cc: New.
6508         * 22_locale/ctype/narrow/wchar_t/wrapped_locale.cc: New.
6509         * 22_locale/ctype/scan/char/1.cc: New.
6510         * 22_locale/ctype/scan/char/wrapped_env.cc: New.
6511         * 22_locale/ctype/scan/char/wrapped_locale.cc: New.
6512         * 22_locale/ctype/scan/wchar_t/1.cc: New.
6513         * 22_locale/ctype/scan/wchar_t/wrapped_env.cc: New.
6514         * 22_locale/ctype/scan/wchar_t/wrapped_locale.cc: New.
6515         * 22_locale/ctype/to/char/1.cc: New.
6516         * 22_locale/ctype/to/char/wrapped_env.cc: New.
6517         * 22_locale/ctype/to/char/wrapped_locale.cc: New.
6518         * 22_locale/ctype/to/wchar_t/1.cc: New.
6519         * 22_locale/ctype/to/wchar_t/wrapped_env.cc: New.
6520         * 22_locale/ctype/to/wchar_t/wrapped_locale.cc: New.
6521         * 22_locale/ctype/widen/char/1.cc: New.
6522         * 22_locale/ctype/widen/char/wrapped_env.cc: New.
6523         * 22_locale/ctype/widen/char/wrapped_locale.cc: New.
6524         * 22_locale/ctype/widen/wchar_t/1.cc: New.
6525         * 22_locale/ctype/widen/wchar_t/wrapped_env.cc: New.
6526         * 22_locale/ctype/widen/wchar_t/wrapped_locale.cc: New.
6527         * 22_locale/facet/1.cc: New.
6528         * 22_locale/facet/2.cc: New.
6529         * 22_locale/global_templates/1.cc: New.
6530         * 22_locale/locale/cons/1.cc: New.
6531         * 22_locale/locale/cons/2.cc: New.
6532         * 22_locale/locale/cons/3.cc: New.
6533         * 22_locale/locale/cons/4.cc: New.
6534         * 22_locale/locale/cons/5.cc: New.
6535         * 22_locale/locale/cons/6.cc: New.
6536         * 22_locale/locale/cons/7.cc: New.
6537         * 22_locale/locale/global_locale_objects/1.cc: New.
6538         * 22_locale/locale/global_locale_objects/2.cc: New.
6539         * 22_locale/locale/global_locale_objects/3.cc: New.
6540         * 22_locale/locale/operations/1.cc: New.
6541         * 22_locale/locale/operations/2.cc: New.
6542         * 22_locale/messages/1.cc: New.
6543         * 22_locale/messages/2.cc: New.
6544         * 22_locale/messages/members/char/1.cc: New.
6545         * 22_locale/messages/members/char/2.cc: New.
6546         * 22_locale/messages/members/char/3.cc: New.
6547         * 22_locale/messages/members/char/wrapped_env.cc: New.
6548         * 22_locale/messages/members/char/wrapped_locale.cc: New.
6549         * 22_locale/messages_byname/1.cc: New.
6550         * 22_locale/money_get/1.cc: New.
6551         * 22_locale/money_get/2.cc: New.
6552         * 22_locale/money_get/get/char/1.cc: New.
6553         * 22_locale/money_get/get/char/2.cc: New.
6554         * 22_locale/money_get/get/char/3.cc: New.
6555         * 22_locale/money_get/get/char/4.cc: New.
6556         * 22_locale/money_get/get/char/5.cc: New.
6557         * 22_locale/money_get/get/char/6.cc: New.
6558         * 22_locale/money_get/get/char/7.cc: New.
6559         * 22_locale/money_get/get/char/8.cc: New.
6560         * 22_locale/money_get/get/char/wrapped_env.cc: New.
6561         * 22_locale/money_get/get/char/wrapped_locale.cc: New.
6562         * 22_locale/money_get/get/wchar_t/1.cc: New.
6563         * 22_locale/money_get/get/wchar_t/2.cc: New.
6564         * 22_locale/money_get/get/wchar_t/3.cc: New.
6565         * 22_locale/money_get/get/wchar_t/4.cc: New.
6566         * 22_locale/money_get/get/wchar_t/5.cc: New.
6567         * 22_locale/money_get/get/wchar_t/6.cc: New.
6568         * 22_locale/money_get/get/wchar_t/7.cc: New.
6569         * 22_locale/money_get/get/wchar_t/8.cc: New.
6570         * 22_locale/money_get/get/wchar_t/wrapped_env.cc: New.
6571         * 22_locale/money_get/get/wchar_t/wrapped_locale.cc: New.
6572         * 22_locale/money_put/1.cc: New.
6573         * 22_locale/money_put/2.cc: New.
6574         * 22_locale/money_put/put/char/1.cc: New.
6575         * 22_locale/money_put/put/char/2.cc: New.
6576         * 22_locale/money_put/put/char/3.cc: New.
6577         * 22_locale/money_put/put/char/4.cc: New.
6578         * 22_locale/money_put/put/char/5.cc: New.
6579         * 22_locale/money_put/put/char/6.cc: New.
6580         * 22_locale/money_put/put/char/wrapped_env.cc: New.
6581         * 22_locale/money_put/put/char/wrapped_locale.cc: New.
6582         * 22_locale/money_put/put/wchar_t/1.cc: New.
6583         * 22_locale/money_put/put/wchar_t/2.cc: New.
6584         * 22_locale/money_put/put/wchar_t/3.cc: New.
6585         * 22_locale/money_put/put/wchar_t/4.cc: New.
6586         * 22_locale/money_put/put/wchar_t/5.cc: New.
6587         * 22_locale/money_put/put/wchar_t/6.cc: New.
6588         * 22_locale/money_put/put/wchar_t/wrapped_env.cc: New.
6589         * 22_locale/money_put/put/wchar_t/wrapped_locale.cc: New.
6590         * 22_locale/moneypunct/1.cc: New.
6591         * 22_locale/moneypunct/2.cc: New.
6592         * 22_locale/moneypunct/3.cc: New.
6593         * 22_locale/moneypunct/members/char/1.cc: New.
6594         * 22_locale/moneypunct/members/char/2.cc: New.
6595         * 22_locale/moneypunct/members/char/wrapped_env.cc: New.
6596         * 22_locale/moneypunct/members/char/wrapped_locale.cc: New.
6597         * 22_locale/moneypunct/members/wchar_t/1.cc: New.
6598         * 22_locale/moneypunct/members/wchar_t/2.cc: New.
6599         * 22_locale/moneypunct/members/wchar_t/wrapped_env.cc: New.
6600         * 22_locale/moneypunct/members/wchar_t/wrapped_locale.cc: New.
6601         * 22_locale/moneypunct_byname/1.cc: New.
6602         * 22_locale/num_get/1.cc: New.
6603         * 22_locale/num_get/2.cc: New.
6604         * 22_locale/num_get/get/char/1.cc: New.
6605         * 22_locale/num_get/get/char/2.cc: New.
6606         * 22_locale/num_get/get/char/3.cc: New.
6607         * 22_locale/num_get/get/char/4.cc: New.
6608         * 22_locale/num_get/get/char/5.cc: New.
6609         * 22_locale/num_get/get/char/6.cc: New.
6610         * 22_locale/num_get/get/char/wrapped_env.cc: New.
6611         * 22_locale/num_get/get/char/wrapped_locale.cc: New.
6612         * 22_locale/num_get/get/wchar_t/1.cc: New.
6613         * 22_locale/num_get/get/wchar_t/2.cc: New.
6614         * 22_locale/num_get/get/wchar_t/3.cc: New.
6615         * 22_locale/num_get/get/wchar_t/4.cc: New.
6616         * 22_locale/num_get/get/wchar_t/5.cc: New.
6617         * 22_locale/num_get/get/wchar_t/6.cc: New.
6618         * 22_locale/num_get/get/wchar_t/wrapped_env.cc: New.
6619         * 22_locale/num_get/get/wchar_t/wrapped_locale.cc: New.
6620         * 22_locale/num_put/1.cc: New.
6621         * 22_locale/num_put/2.cc: New.
6622         * 22_locale/num_put/put/char/1.cc: New.
6623         * 22_locale/num_put/put/char/2.cc: New.
6624         * 22_locale/num_put/put/char/3.cc: New.
6625         * 22_locale/num_put/put/char/4.cc: New.
6626         * 22_locale/num_put/put/char/5.cc: New.
6627         * 22_locale/num_put/put/char/wrapped_env.cc: New.
6628         * 22_locale/num_put/put/char/wrapped_locale.cc: New.
6629         * 22_locale/num_put/put/wchar_t/1.cc: New.
6630         * 22_locale/num_put/put/wchar_t/2.cc: New.
6631         * 22_locale/num_put/put/wchar_t/3.cc: New.
6632         * 22_locale/num_put/put/wchar_t/4.cc: New.
6633         * 22_locale/num_put/put/wchar_t/5.cc: New.
6634         * 22_locale/num_put/put/wchar_t/wrapped_env.cc: New.
6635         * 22_locale/num_put/put/wchar_t/wrapped_locale.cc: New.
6636         * 22_locale/numpunct/1.cc: New.
6637         * 22_locale/numpunct/2.cc: New.
6638         * 22_locale/numpunct/members/char/1.cc: New.
6639         * 22_locale/numpunct/members/char/2.cc: New.
6640         * 22_locale/numpunct/members/char/wrapped_env.cc: New.
6641         * 22_locale/numpunct/members/char/wrapped_locale.cc: New.
6642         * 22_locale/numpunct/members/wchar_t/1.cc: New.
6643         * 22_locale/numpunct/members/wchar_t/2.cc: New.
6644         * 22_locale/numpunct/members/wchar_t/wrapped_env.cc: New.
6645         * 22_locale/numpunct/members/wchar_t/wrapped_locale.cc: New.
6646         * 22_locale/numpunct_byname/1.cc: New.
6647         * 22_locale/numpunct_byname/2.cc: New.
6648         * 22_locale/time_get/1.cc: New.
6649         * 22_locale/time_get/2.cc: New.
6650         * 22_locale/time_get/date_order/char/1.cc: New.
6651         * 22_locale/time_get/date_order/char/wrapped_env.cc: New.
6652         * 22_locale/time_get/date_order/char/wrapped_locale.cc: New.
6653         * 22_locale/time_get/date_order/wchar_t/1.cc: New.
6654         * 22_locale/time_get/date_order/wchar_t/wrapped_env.cc: New.
6655         * 22_locale/time_get/date_order/wchar_t/wrapped_locale.cc: New.
6656         * 22_locale/time_get/get_date/char/1.cc: New.
6657         * 22_locale/time_get/get_date/char/2.cc: New.
6658         * 22_locale/time_get/get_date/char/3.cc: New.
6659         * 22_locale/time_get/get_date/char/wrapped_env.cc: New.
6660         * 22_locale/time_get/get_date/char/wrapped_locale.cc: New.
6661         * 22_locale/time_get/get_date/wchar_t/1.cc: New.
6662         * 22_locale/time_get/get_date/wchar_t/2.cc: New.
6663         * 22_locale/time_get/get_date/wchar_t/3.cc: New.
6664         * 22_locale/time_get/get_date/wchar_t/wrapped_env.cc: New.
6665         * 22_locale/time_get/get_date/wchar_t/wrapped_locale.cc: New.
6666         * 22_locale/time_get/get_monthname/char/1.cc: New.
6667         * 22_locale/time_get/get_monthname/char/2.cc: New.
6668         * 22_locale/time_get/get_monthname/char/3.cc: New.
6669         * 22_locale/time_get/get_monthname/char/wrapped_env.cc: New.
6670         * 22_locale/time_get/get_monthname/char/wrapped_locale.cc: New.
6671         * 22_locale/time_get/get_monthname/wchar_t/1.cc: New.
6672         * 22_locale/time_get/get_monthname/wchar_t/2.cc: New.
6673         * 22_locale/time_get/get_monthname/wchar_t/3.cc: New.
6674         * 22_locale/time_get/get_monthname/wchar_t/wrapped_env.cc: New.
6675         * 22_locale/time_get/get_monthname/wchar_t/wrapped_locale.cc: New.
6676         * 22_locale/time_get/get_time/char/1.cc: New.
6677         * 22_locale/time_get/get_time/char/2.cc: New.
6678         * 22_locale/time_get/get_time/char/3.cc: New.
6679         * 22_locale/time_get/get_time/char/wrapped_env.cc: New.
6680         * 22_locale/time_get/get_time/char/wrapped_locale.cc: New.
6681         * 22_locale/time_get/get_time/wchar_t/1.cc: New.
6682         * 22_locale/time_get/get_time/wchar_t/2.cc: New.
6683         * 22_locale/time_get/get_time/wchar_t/3.cc: New.
6684         * 22_locale/time_get/get_time/wchar_t/wrapped_env.cc: New.
6685         * 22_locale/time_get/get_time/wchar_t/wrapped_locale.cc: New.
6686         * 22_locale/time_get/get_weekday/char/1.cc: New.
6687         * 22_locale/time_get/get_weekday/char/2.cc: New.
6688         * 22_locale/time_get/get_weekday/char/3.cc: New.
6689         * 22_locale/time_get/get_weekday/char/wrapped_env.cc: New.
6690         * 22_locale/time_get/get_weekday/char/wrapped_locale.cc: New.
6691         * 22_locale/time_get/get_weekday/wchar_t/1.cc: New.
6692         * 22_locale/time_get/get_weekday/wchar_t/2.cc: New.
6693         * 22_locale/time_get/get_weekday/wchar_t/3.cc: New.
6694         * 22_locale/time_get/get_weekday/wchar_t/wrapped_env.cc: New.
6695         * 22_locale/time_get/get_weekday/wchar_t/wrapped_locale.cc: New.
6696         * 22_locale/time_get/get_year/char/1.cc: New.
6697         * 22_locale/time_get/get_year/char/3.cc: New.
6698         * 22_locale/time_get/get_year/char/wrapped_env.cc: New.
6699         * 22_locale/time_get/get_year/char/wrapped_locale.cc: New.
6700         * 22_locale/time_get/get_year/wchar_t/1.cc: New.
6701         * 22_locale/time_get/get_year/wchar_t/3.cc: New.
6702         * 22_locale/time_get/get_year/wchar_t/wrapped_env.cc: New.
6703         * 22_locale/time_get/get_year/wchar_t/wrapped_locale.cc: New.
6704         * 22_locale/time_put/1.cc: New.
6705         * 22_locale/time_put/2.cc: New.
6706         * 22_locale/time_put/put/char/1.cc: New.
6707         * 22_locale/time_put/put/char/10.cc: New.
6708         * 22_locale/time_put/put/char/2.cc: New.
6709         * 22_locale/time_put/put/char/3.cc: New.
6710         * 22_locale/time_put/put/char/4.cc: New.
6711         * 22_locale/time_put/put/char/5.cc: New.
6712         * 22_locale/time_put/put/char/6.cc: New.
6713         * 22_locale/time_put/put/char/7.cc: New.
6714         * 22_locale/time_put/put/char/8.cc: New.
6715         * 22_locale/time_put/put/char/9.cc: New.
6716         * 22_locale/time_put/put/char/wrapped_env.cc: New.
6717         * 22_locale/time_put/put/char/wrapped_locale.cc: New.
6718         * 22_locale/time_put/put/wchar_t/1.cc: New.
6719         * 22_locale/time_put/put/wchar_t/10.cc: New.
6720         * 22_locale/time_put/put/wchar_t/2.cc: New.
6721         * 22_locale/time_put/put/wchar_t/3.cc: New.
6722         * 22_locale/time_put/put/wchar_t/4.cc: New.
6723         * 22_locale/time_put/put/wchar_t/5.cc: New.
6724         * 22_locale/time_put/put/wchar_t/6.cc: New.
6725         * 22_locale/time_put/put/wchar_t/7.cc: New.
6726         * 22_locale/time_put/put/wchar_t/8.cc: New.
6727         * 22_locale/time_put/put/wchar_t/9.cc: New.
6728         * 22_locale/time_put/put/wchar_t/wrapped_env.cc: New.
6729         * 22_locale/time_put/put/wchar_t/wrapped_locale.cc: New.
6730
6731 2003-01-16  Jeffrey D. Oldham  <oldham@codesourcery.com>
6732
6733         * config/locale/generic/messages_members.h
6734         (messages_byname<_CharT>::messages_byname): Use this-> to refer to
6735         unqualified members of base clasess.
6736
6737 2003-01-16  Mark Mitchell  <mark@codesourcery.com>
6738             Jeffrey Oldham <oldham@codesourcery.com>
6739
6740         * config/locale/gnu/messages_members.h: Use this-> to refer to
6741         unqualified members of base clasess.
6742         * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Likewise.
6743         * include/bits/codecvt.h: Likewise.
6744         * include/bits/deque.tcc: Likewise.
6745         * include/bits/fstream.tcc: Likewise.
6746         * include/bits/istream.tcc: Likewise.
6747         * include/bits/list.tcc: Likewise.
6748         * include/bits/locale_facets.h: Likewise.
6749         * include/bits/ostream.tcc: Likewise.
6750         * include/bits/sstream.tcc: Likewise.
6751         * include/bits/stl_bvector.h: Likewise.
6752         * include/bits/stl_deque.h: Likewise.
6753         * include/bits/stl_list.h: Likewise.
6754         * include/bits/stl_tree.h: Likewise.
6755         * include/bits/stl_vector.h: Likewise.
6756         * include/bits/vector.tcc: Likewise.
6757         * include/ext/ropeimpl.h: Likewise.
6758         * include/ext/stdio_filebuf.h: Likewise.
6759         * include/ext/stl_rope.h: Likewise.
6760         * include/std/std_fstream.h: Likewise.
6761         * include/std/std_sstream.h: Likewise.
6762
6763 2003-01-15  Phil Edwards  <pme@gcc.gnu.org>
6764
6765         * include/bits/basic_string.tcc (_S_string_copy): Unused, remove.
6766
6767 2003-01-15  Benjamin Kosnik  <bkoz@redhat.com>
6768
6769         * acinclude.m4 (GLIBCPP_CHECK_WCHAR_T_SUPPORT): Substitute
6770         GLIBCPP_TEST_WCHAR_T if building wchar_t bits in the library.
6771         * aclocal.m4: Regenerate.
6772         * configure: Regenerate.
6773         * testsuite/Makefile.am (all-local): Add conditional rule to
6774         generate testsuite_wchar_t.
6775         * testsuite/Makefile.in: Regenerate.
6776         * testsuite/lib/libstdc++-v3-dg.exp
6777         (libstdc++-v3-list-sourcefiles): Remove wchar_t files if
6778         testsuite_wchar_t is not present in the build directory.
6779         * testsuite/libstdc++-v3.dg/dg.exp: Add -g -O2 to DEFAULT_CXXFLAGS.
6780         Remove setulimit bits.
6781         * testsuite/26_numerics/complex_value.cc: Set to noopts.
6782         * testsuite/Makefile.am (CLEANFILES): Add.
6783         * testsuite/Makefile.in: Regenerate.
6784
6785 2003-01-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
6786
6787         * config/os/hpux/os_defines.h (_GLIBCPP_GTHREAD_USE_WEAK): Define for
6788         __hppa__.
6789
6790 2003-01-14  Jeffrey D. Oldham  <oldham@codesourcery.com>
6791
6792         Further conform g++'s __vmi_class_type_info to the C++ ABI
6793         specification.
6794         * libsupc++/cxxabi.h
6795         (__vmi_class_type_info::__flags_masks): Remove enumerations not
6796         required by the specification.
6797
6798 2003-01-12  Benjamin Kosnik  <bkoz@redhat.com>
6799
6800         Renames, namespaces for testsuite utilities.
6801         * testsuite/testsuite_hooks.h: Put into namespace __gnu_cxx_test.
6802         (gnu_allocator_tracker): Rename to allocation_tracker.
6803         (gnu_new_allocator): Rename to tracker_alloc.
6804         (__set_testsuite_memlimit): Rename to set_memory_limits.
6805         (gnu_assignment_operator): Rename to assignment_operator.
6806         (gnu_destructor): Rename to destructor.
6807         (gnu_copy_tracker): Rename to copy_tracker.
6808         (gnu_char, gnu_int, gnu_long): Rename to pod_char, pod_int, pod_long.
6809         (run_tests_wrapped_locale): New.
6810         (run_tests_wrapped_env): New.
6811         * testsuite/testsuite_hooks.cc: Same.
6812         (class locale_data): Add.
6813         (class enviornment_variable): Add.
6814         (class not_found): Add.
6815         * testsuite/testsuite_allocator.h: Same.
6816         * testsuite/testsuite_allocator.cc: Same.
6817         * testsuite/23_containers/deque_ctor.cc
6818         (test_copy_ctor_exception_safety): Change gnu_allocator_tracker to
6819         allocation_tracker.
6820         Change gnu_new_allocator to tracker_alloc.
6821         Change gnu_counting_struct to counter.
6822         Change gnu_copy_tracker to copy_tracker.
6823         Change gnu_copy_constructor to copy_constructor.
6824         Change gnu_assignment_operator to assignment_operator.
6825         Inject.
6826         * testsuite/23_containers/vector_capacity.cc: Same.
6827         * testsuite/23_containers/vector_ctor.cc (test01): Same.
6828         * testsuite/23_containers/list_modifiers.cc: Change
6829         gnu_copy_tracker to copy_tracker.
6830         * testsuite/21_strings/ctor_copy_dtor.cc (main): Change
6831         __set_testsuite_memlimit to set_memory_limits.
6832         * testsuite/21_strings/insert.cc (main): Same.
6833         * testsuite/27_io/filebuf.cc: Change gnu_char to pod_char.
6834         * testsuite/27_io/stringstream.cc: Same.
6835         * testsuite/27_io/stringbuf.cc: Same.
6836         * testsuite/27_io/streambuf.cc: Same.
6837         * testsuite/27_io/ostream.cc: Same.
6838         * testsuite/27_io/istream.cc: Same.
6839         * testsuite/27_io/fstream.cc: Same.
6840         * testsuite/lib/libstdc++-v3-dg.exp
6841         (libstdc++-v3-list-sourcefiles): Additionally handle files two and
6842         three levels deeper in glob patterns.
6843
6844 2003-01-11  Phil Edwards  <pme@gcc.gnu.org>
6845
6846         * docs/doxygen/tables.html:  Finished now.
6847         * docs/doxygen/user.cfg.in:  Update to latest version of Doxygen.
6848         * include/bits/basic_ios.h (basic_ios::rdbuf):  Add example to
6849         comments.
6850
6851         * include/bits/deque.tcc, include/bits/stl_alloc.h,
6852         include/bits/stl_deque.h, include/bits/stl_list.h,
6853         include/bits/stl_vector.h:  Remove _GLIBCPP_DEPRECATED bits scheduled
6854         for 3.4 removal.
6855
6856 2003-01-09  Benjamin Kosnik  <bkoz@redhat.com>
6857
6858         * configure.in: Revert.
6859         * configure: Regenerate.
6860
6861 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
6862
6863         * include/Makefile.am (install-data-local): Prepend
6864         $(DESTDIR) to destination paths in all (un)installation
6865         commands.  Use ${c_base_builddir} and ${std_builddir}
6866         as destination subdirectories to achieve consistency with
6867         preceding mkinstalldirs commands.  No effect because both
6868         variables contain "." only.
6869         * include/Makefile.in: Regenerate.
6870
6871 2003-01-08  Benjamin Kosnik  <bkoz@redhat.com>
6872
6873         * include/Makefile.am (stamp-*): Add checks for existing stamps.
6874         * include/Makefile.in: Regenerate.
6875
6876         * acinclude.m4 (GLIBCPP_ENABLE_DEBUG): Correct comment.
6877         * aclocal.m4: Regenerate.
6878
6879         * configure.in: Don't add new multi-do rules every time the
6880         directory is reconfigured.
6881         * configure: Regenerate.
6882
6883 2003-01-08  Brad Spencer  <spencer@infointeractive.com>
6884             Nathan Myers  <ncm@cantrip.org>
6885
6886         * src/Makefile.am (stamp-debug): Clean.
6887         * src/Makefile.in: Regenerate.
6888
6889 2003-01-07  Benjamin Kosnik  <bkoz@redhat.com>
6890
6891         PR libstdc++/8707
6892         * Makefile.am (distclean-multi): Fix.
6893         * Makefile.in: Regenerate.
6894
6895 2003-01-06  Benjamin Kosnik  <bkoz@redhat.com>
6896
6897         * include/bits/locale_facets.h (messages): Move ctor, dtor
6898         definitions to..
6899         (__timepunct): Same.
6900         * config/locale/gnu/messages_members.h (messages): Add dtor, ctor
6901         definitions. Conditionalize for GNU systems.
6902         * config/locale/generic/messages_members.h (messages): Add dtor, ctor
6903         definitions.
6904         * config/locale/gnu/time_members.h (messages): New. Add dtor, ctor
6905         definitions. Conditionalize for GNU systems.
6906         * config/locale/generic/time_members.h (messages): New. Add dtor, ctor
6907         definitions.
6908         * include/bits/localefwd.h (locale::facet::_S_c_name): Add.
6909         * src/locale.cc: Define.
6910         * src/localename.cc (locale::_Impl::_Impl(facet**, size_t, bool):
6911         Use it.
6912         * config/locale/gnu/time_members.h: Use it.
6913         * config/locale/gnu/messages_members.h: Use it.
6914         * config/linker-map.gnu: Add locale::facets details.
6915         * include/Makefile.am (target_headers_extra): Add time_members.h.
6916         * include/Makefile.in: Regenerate.
6917         * acinclude.m4: Export CTIME_H.
6918         * aclocal.m4: Regenerate.
6919         * configure: Regnerate.
6920
6921 2003-01-06  Paolo Carlini  <pcarlini@unitus.it>
6922
6923         * src/codecvt.cc
6924         (codecvt<char, char, mbstate_t>::do_in, do_out):
6925         Tweak parameters to avoid unused parameter warnings.
6926
6927 2003-01-06  Paolo Carlini  <pcarlini@unitus.it>
6928
6929         PR libstdc++/9151
6930         * include/bits/locale_facets.cc (num_put::_M_convert_float):
6931         Limit __prec to digits10 + 2, not digits10 + 1, taking into
6932         account the possibility of %{g,G} conversion specifiers
6933         inside _S_format_float.
6934         * testsuite/27_io/ostream_inserter_arith.cc (test06): Add.
6935
6936 2003-01-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6937
6938         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init,
6939         libstdc++-v3-list-sourcefiles): Additionally handle files one
6940         level deeper in glob patterns.
6941
6942         * testsuite/27_io/istream_extractor_arith.cc: Delete, split...
6943         * testsuite/27_io/istream_extractor_arith/01.cc,
6944         testsuite/27_io/istream_extractor_arith/02.cc,
6945         testsuite/27_io/istream_extractor_arith/03.cc,
6946         testsuite/27_io/istream_extractor_arith/06.cc,
6947         testsuite/27_io/istream_extractor_arith/07.cc,
6948         testsuite/27_io/istream_extractor_arith/08.cc,
6949         testsuite/27_io/istream_extractor_arith/09.cc,
6950         testsuite/27_io/istream_extractor_arith/10.cc,
6951         testsuite/27_io/istream_extractor_arith/11.cc,
6952         testsuite/27_io/istream_extractor_arith/12.cc,
6953         testsuite/27_io/istream_extractor_arith/13.cc: ... to new files.
6954         * testsuite/27_io/istream_extractor_arith/12.cc: Add XFAIL for
6955         sparc*-*-solaris2*.
6956
6957 2003-01-05  Paolo Carlini <pcarlini@unitus.it>
6958
6959         PR libstdc++/9168
6960         * src/codecvt.cc
6961         (codecvt<char, char, mbstate_t>::do_in, do_out):
6962         Implement the resolution of DR19 (TC).
6963         * testsuite/22_locale/codecvt_members_char_char.cc
6964         (test01): Tweak.
6965
6966 2003-01-02  Jason Merrill  <jason@redhat.com>
6967
6968         * config/cpu/i486/atomicity.h (__exchange_and_add, __atomic_add):
6969         *__mem is also an output.
6970         * config/cpu/m68k/atomicity.h (__exchange_and_add): Likewise.