* acinclude.m4: Check for native targets that can't link at
[official-gcc.git] / libstdc++-v3 / ChangeLog
blob2712b3a13a32de658bbada55db468b3cf169f797
1 2002-02-11  DJ Delorie  <dj@redhat.com>
3         * acinclude.m4: Check for native targets that can't link at
4         this point in the build.
5         * aclocal.m4: Regenerate.
6         * configure: Regenerate.
8 2003-02-08  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
10         * hppa/atomicity.h (__Atomicity_lock<__inst>::_S_atomicity_lock):
11         Correct alignment.
12         (__exchange_and_add, __atomic_add): Use PA 2.0 ordered store to reset
13         lock.
15 2003-02-07  Paolo Carlini  <pcarlini@unitus.it>
17         * testsuite/27_io/filebuf_virtuals.cc (test08): Fix for
18         unsigned char platforms.
20 2003-02-06  Paolo Carlini  <pcarlini@unitus.it>
22         PR libstdc++/9562
23         * include/std/std_istream.h
24         (basic_istream::sentry::operator bool()): Make const.
25         * include/std/std_ostream.h
26         (basic_ostream::sentry::operator bool()): Likewise.
27         * testsuite/27_io/istream_sentry.cc (test03): Add.
28         * testsuite/27_io/ostream_sentry.cc: Add.
30 2003-02-06  Paolo Carlini  <pcarlini@unitus.it>
32         PR libstdc++/9548
33         Implement resolution of DR 231 (Ready)
34         * include/bits/locale_facets.h (__num_base::_S_format_float):
35         Change declaration: return void, remove __prec parameter.
36         * src/locale.cc (__num_base::_S_format_float): Implement
37         resolution of DR 231.
38         * include/bits/locale_facets.tcc (num_put::_M_convert_float):
39         Tweak uses. Check for negative precision.
40         * testsuite/22_locale/num_put/put/char/6.cc: Add
41         * testsuite/22_locale/num_put/put/wchar_t/6.cc: Likewise.
43 2003-02-06  Peter Soetens  <peter.soetens@mech.kuleuven.ac.be>
45         * config/io/basic_file_libio.h: Fixups.
46         * config/io/c_io_libio.h: Same.
47         * libio/Makefile.am: Same.
48         * libio/Makefile.in: Regenerated.
49         
50 2003-02-06  Benjamin Kosnik  <bkoz@redhat.com>
52         * testsuite/22_locale/codecvt/encoding/wchar_t/1.cc (test01):
53         Explicitly use the "C" locale.
54         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc (test01): Same.
55         
56 2003-02-06  Petur Runolfsson  <peturr02@ru.is>
58         DR 75
59         DR 305
60         PR libstdc++/9028 (partial)
61         PR libstdc++/9224
62         PR libstdc++/9246
63         PR libstdc++/9247
65         * src/codecvt.cc
66         (codecvt<wchar_t, char, mbstate_t>::do_encoding,
67         codecvt<wchar_t, char, mbstate_t>::do_length,
68         codecvt<wchar_t, char, mbstate_t>::do_max_length):
69         Move...
70         * config/locale/generic/codecvt_members.cc:  ...here.
71         * config/locale/gnu/codecvt_members.cc:  ...and here.
73         * config/locale/generic/codecvt_members.cc,
74         * config/locale/gnu/codecvt_members.cc
75         (codecvt<wchar_t, char, mbstate_t>::do_encoding
76         codecvt<wchar_t, char, mbstate_t>::do_in,
77         codecvt<wchar_t, char, mbstate_t>::do_length,
78         codecvt<wchar_t, char, mbstate_t>::do_max_length,
79         codecvt<wchar_t, char, mbstate_t>::do_out):
80         New implementation that handles stateless encodings,
81         including UTF-8.
83         * config/locale/generic/codecvt_members.cc,
84         * config/locale/gnu/codecvt_members.cc,
85         * config/locale/ieee_1003.1-2001/codecvt_specializations.h,
86         * include/bits/codecvt.h,
87         * src/codecvt.cc
88         (codecvt::length, codecvt::do_length):
89         Change type of first argument of length and do_length from
90         'const state_type&' to 'state_type&' according to DR 75.
92         * testsuite/22_locale/codecvt/always_noconv/wchar_t/1.cc:  Cleanup.
93         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc:  New test.
94         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc:  New test.
95         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc:  New test.
96         * testsuite/22_locale/codecvt/encoding/wchar_t/1.cc:
97         Cleanup and check for correct return value from encoding
98         for "C" locale.
99         * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc:  New test.
100         * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc:  New test.
101         * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc:  New test.
102         * testsuite/22_locale/codecvt/in/wchar_t/1.cc:  Cleanup.
103         * testsuite/22_locale/codecvt/in/wchar_t/2.cc:  New test.
104         * testsuite/22_locale/codecvt/in/wchar_t/3.cc:  New test.
105         * testsuite/22_locale/codecvt/in/wchar_t/4.cc:  New test.
106         * testsuite/22_locale/codecvt/in/wchar_t/5.cc:  New test.
107         * testsuite/22_locale/codecvt/in/wchar_t/6.cc:  New test.
108         * testsuite/22_locale/codecvt/in/wchar_t/7.cc:  New test.
109         * testsuite/22_locale/codecvt/in/wchar_t/8.cc:  New test.
110         * testsuite/22_locale/codecvt/in/wchar_t/9.cc:  New test.
111         * testsuite/22_locale/codecvt/length/char/1.cc:  Cleanup.
112         * testsuite/22_locale/codecvt/length/char/2.cc:  New test.
113         * testsuite/22_locale/codecvt/length/wchar_t/1.cc:  Cleanup.
114         * testsuite/22_locale/codecvt/length/wchar_t/2.cc:  New test.
115         * testsuite/22_locale/codecvt/length/wchar_t/3.cc:  New test.
116         * testsuite/22_locale/codecvt/length/wchar_t/4.cc:  New test.
117         * testsuite/22_locale/codecvt/length/wchar_t/5.cc:  New test.
118         * testsuite/22_locale/codecvt/length/wchar_t/6.cc:  New test.
119         * testsuite/22_locale/codecvt/length/wchar_t/7.cc:  New test.
120         * testsuite/22_locale/codecvt/max_length/wchar_t/1.cc:  Cleanup.
121         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc:  New test.
122         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc:  New test.
123         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc:  New test.
124         * testsuite/22_locale/codecvt/out/wchar_t/1.cc:  Cleanup.
125         * testsuite/22_locale/codecvt/out/wchar_t/2.cc:  New test.
126         * testsuite/22_locale/codecvt/out/wchar_t/3.cc:  New test.
127         * testsuite/22_locale/codecvt/out/wchar_t/4.cc:  New test.
128         * testsuite/22_locale/codecvt/out/wchar_t/5.cc:  New test.
129         * testsuite/22_locale/codecvt/out/wchar_t/6.cc:  New test.
130         * testsuite/22_locale/codecvt/out/wchar_t/7.cc:  New test.
131         * testsuite/22_locale/codecvt/unicode/1.cc:  New test.
132         * testsuite/22_locale/codecvt/unshift/wchar_t/1.cc:  Cleanup.
133         * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc:  New test.
134         * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc:  New test.
135         * testsuite/22_locale/codecvt/unshfit/wchar_t/4.cc:  New test.
137 2003-02-05  Benjamin Kosnik  <bkoz@redhat.com>
139         * include/bits/locale_facets.tcc (time_put::do_put): Use __write.
140         (money_put::do_put): Same.
142 2003-02-05  Jerry Quinn  <jlquinn@optonline.net>
144         * include/bits/ios_base.h (ios_base): Document reserved storage.
146         * include/bits/locale_facets.h: (struct __pad): Comment on
147         implementation.
148         (__verify_grouping): Same.
149         (__add_grouping): Same.         
150         * include/bits/locale_facets.tcc (__verify_grouping): Move
151         comments to declaration.
152         (__add_grouping): Same.
153         
154         * include/bits/locale_facets.tcc: 
155         (__write<_CharT, _OutIter>): New function.
156         (__write<_CharT>): New function specialization.
157         (num_put::_M_insert): Remove explicit loop over iterator.  Use
158         __write.
159         (num_put::_M_widen_float): Remove __basefield. 
160         (num_put::_M_widen_int): Move __basefield to within grouping block.
161         
162         * include/bits/streambuf_iterator.h: Include <streambuf>.
163         (ostreambuf_iterator::_M_put): Add.
165 2003-02-05  Paolo Carlini  <pcarlini@unitus.it>
167         * testsuite/26_numerics/valarray_name_lookup.cc: Fix typo.
169 2003-02-04  Nathan Myers  <ncm@cantrip.org>
171         * testsuite/25_algorithms/min_max.cc (test02): Add.
172             
173 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
174         
175         PR libstdc++/9439, PR libstdc++/9425
176         * config/io/basic_file_stdio.cc
177         (__basic_file<char>::seekoff, seekpos): Return -1L if
178         fseek fails.
179         * include/bits/fstream.tcc (basic_filebuf::seekoff):
180         Check _M_file.seekoff return value; always return
181         pos_type(off_type(-1)) in case of failure.
182         (basic_filebuf::pbackfail): Check this->seekoff return
183         value and return traits_type::eof() in case of failure.  
184         * testsuite/27_io/filebuf_virtuals.cc (test09): Add.
186 2003-02-04  Jerry Quinn  <jlquinn@optonline.net>
188         * include/std/std_ostream.h (ostream::_M_write): Declare.       
189         * ostream.tcc (ostream::_M_write): Define.
190         (basic_ostream::write): Use it.
191         (operator<<(basic_ostream, _CharT)): Ditto.
192         (operator<<(basic_ostream, char)): Ditto.
193         (operator<<(basic_ostream, _CharT*)): Ditto.
194         (operator<<(basic_ostream, char*)): Ditto.
195         (operator<<(basic_ostream, basic_string)): Ditto.
197 2003-02-04  Benjamin Kosnik  <bkoz@redhat.com>
199         * testsuite/26_numerics/valarray_name_lookup.cc: Fix.
201 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
203         * docs/html/27_io/howto.html: Link to Dietmar Kuehl's IOStream page,
204         add HTML comment about updating links if numbering changes.
206 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
208         PR libstdc++/9538
209         * include/bits/streambuf.tcc (sputbackc): Access
210         this->gptr()[-1] only if _M_in_beg < _M_in_cur.
211         * testsuite/27_io/filebuf_virtuals.cc (test08): Add.
213 2003-02-04  Paolo Carlini  <pcarlini@unitus.it>
215         PR libstdc++/9507
216         * include/bits/fstream.tcc (open): If the 'ate' repositioning
217         operation fails, calls close _and_ returns a null pointer
218         to indicate failure (27.8.1.3,4).
219         * testsuite/27_io/filebuf_members.cc (test_06): Add.
221 2003-02-04  Petur Runolfsson  <peturr02@ru.is>
223         * testsuite/27_io/filebuf_members.cc (test_04): Remove exit(0).
225 2002-02-04  Jonathan Wakely  <redi@gcc.gnu.org>
227         * docs/html/27_io/howto.html: New section on stdio_filebuf.
228         * docs/html/ext/howto.html: Move stdio_filebuf notes to 27_io.
229         * docs/html/documentation.html: Regenerate.
231 2003-02-04  Joseph S. Myers  <jsm@polyomino.org.uk>
233         * docs/html/17_intro/porting.texi: Update to GFDL 1.2.
234         * docs/html/17_intro/porting.html: Regenerate.
236 2003-02-03  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
237             Phil Edwards  <pme@gcc.gnu.org>
239         * include/std/std_bitset.h:  Replace CHAR_BIT with __CHAR_BIT__, use
240         numeric_limits for bits-per-word values.
241         (_Base_bitset::_M_do_count, _Base_bitset<1>::_M_do_count):
242         Use __builtin_popcountl instead.
243         (_Base_bitset::_M_do_find_first, _Base_bitset::_M_do_find_next,
244         _Base_bitset<1>::_M_do_find_first, _Base_bitset<1>::_M_do_find_next):
245         Use __builtin_ctzl instead.
246         (_S_bit_count, _S_first_one):  Remove.
247         * config/linker-map.gnu (GLIBCPP_3.4):  Remove std::_S_bit_count.
248         * src/Makefile.am (sources):  Remove bitset.cc.
249         * src/bitset.cc:  Delete file.
250         * src/Makefile.in:  Regenerate.
252 2003-02-03  Phil Edwards  <pme@gcc.gnu.org>
254         PR libstdc++/9527, PR libstdc++/8713
255         * docs/html/install.html:  Mention glibc version requirement.
256         * docs/html/faq/index.html (3.8):  New note, glibc 2.2.5+ is needed
257         with 3.2.1+ (formatting bugfixes).
258         * docs/html/faq/index.txt:  Regenerate.
260 2003-02-03  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
262         PR libstdc++/9234
263         * include/bits/valarray_before.h (_UnBase::operator[]): Apply unary
264         operator.
266         * include/bits/valarray_before.h (__not_equal_to): Use != instead
267         of ==.
269         * testsuite/26_numerics/valarray_operators.cc: New test.
271 2003-02-01  Phil Edwards  <pme@gcc.gnu.org>
273         * docs/html/faq/index.html:  Correct link to libg++ information.
274         * docs/html/faq/index.txt:  Regenerated.
276 2003-02-01  Paolo Carlini  <pcarlini@unitus.it>
277             Benjamin Kosnik  <bkoz@redhat.com>
279         Const correctness issue:
280         http://gcc.gnu.org/ml/libstdc++/2003-01/msg00370.html
281         * include/bits/locale_classes.h
282         (locale::_Impl::_M_facets): Change type to const facet**.
283         (locale::_Impl::_M_install_facet): Change declaration to
284         take const facet*.
285         (locale::facet::_M_references): Make mutable.
286         (locale::facet::_M_add_reference): Declare const.
287         (locale::facet::_M_remove_reference): Likewise.
288         * include/bits/locale_facets.tcc
289         (use_facet(const locale&)): Tweak for const facet** _M_facets.
290         (has_facet(const locale&)): Likewise.
291         * src/locale.cc
292         (locale::facet::_M_add_reference): Adjust definition.
293         (locale::facet::_M_remove_reference): Likewise.
294         * src/localename.cc
295         (locale::_Impl::_Impl(const _Impl&, size_t)): Tweak for
296         const facet** _M_facets.
297         (locale::_Impl::_Impl(const char*, size_t)): Likewise.
298         (locale::_Impl::_Impl(facet**, size_t, bool)): Likewise.
299         (locale::_Impl::_M_install_facet): Adjust definition to take
300         const facet* and for const facet** _M_facets.
301         * testsuite/22_locale/locale/cons/8.cc: Add.
303 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
305         * include/std/std_limits.h (numeric_limits<float>::has_infinity):
306         Use __FLT_HAS_INIFINITY__ to initialize.
307         (numeric_limits<float>::has_quiet_NaN): Likewise.
308         (numeric_limits<double>::has_infinity): Use __DBL_HAS_INIFINITY__
309         to initialize.
310         (numeric_limits<double>::has_quiet_NaN): Likewise.
311         (numeric_limits<long double>::has_infinity): Use
312         __LDBL_HAS_INIFINITY__ to initialize.
313         (numeric_limits<long_double>::has_quiet_NaN): Likewise.
315 2003-01-28  Nathan Sidwell  <nathan@codesourcery.com>
317         PR c++/9433
318         * libsupc++/tinfo.cc (__vmi_class_type_info::__do_dyncast): Cope
319         with bases which are very ambiguous.
321 2003-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
323         * src/Makefile.am (CONFIG_CXXFLAGS): Reverse order of
324         @EXTRA_CXX_FLAGS@ @SECTION_FLAGS@.
325         * libsupc++/Makefile.am (CONFIG_CXXFLAGS): Likewise.
326         * src/Makefile.in: Regenerate.
327         * libsupc++/Makefile.in: Regenerate.
329 2003-01-27  Alexandre Oliva  <aoliva@redhat.com>
331         * acinclude.m4 (glibcpp_toolexeclibdir): Instead of
332         $(MULTISUBDIR), use `$CC -print-multi-os-directory`, unless
333         version_specific_libs is enabled.
334         * aclocal.m4, configure: Rebuilt.
336 2003-01-24  Nathan Sidwell  <nathan@codesourcery.com>
338         * include/bits/valarray_meta.h: Remove, split into ...
339         * include/bits/valarray_before.h: ... this, and ...
340         * include/bits/valarray_after.h: ... this.
341         * include/std/std_valarray.h: Adjust.
342         * include/Makefile.am (bits_headers): Adjust.
343         * include/Makefile.in: Regenerate.
345 2003-01-24  Andreas Schwab  <schwab@suse.de>
347         * config/linker-map.gnu: Fix for size_t variance.
349 2003-01-23  Petur Runolfsson  <peturr02@ru.is>
351         PR libstdc++/9322
352         * include/std/std_streambuf.h
353         (basic_streambuf::basic_streambuf,
354         basic_streambuf::~basic_streambuf,
355         basic_streambuf::getloc, basic_streambuf::imbue):
356         Remove _M_buf_locale_init
357         * include/bits/fstream.tcc (basic_filebuf::imbue):  Likewise
358         * testsuite/27_io/filebuf_virtuals.cc (test08):  Add.
359         * testsuite/27_io/streambuf_members.cc (test08):  Add.
360         * testsuite/27_io/stringbuf_virtuals.cc (test08):  Add.
362 2003-01-23  Benjamin Kosnik  <bkoz@redhat.com>
364         Revert include ordering.
365         * config/locale/generic/c_locale.h: Add include guards.
366         * config/locale/gnu/c_locale.h: Same.
367         * include/bits/locale_classes.h: Remove cctype include.
368         * include/std/std_iosfwd.h: Add c++locale.h, cctype includes.
369         * include/std/std_fstream.h: Remove streambuf include.
370         * include/std/std_sstream.h: Remove streambuf include.
371         
372 2003-01-23  Benjamin Kosnik  <bkoz@redhat.com>
374         * configure.in (libtool_VERSION): To 6:0:0.
375         * configure: Regenerated.
376         * config/linker-map.gnu: Clean.
377         
378         * src/misc-inst.cc: Remove instantiations.
380         * include/bits/stl_alloc.h (__malloc_alloc_template): 
381         To __malloc_alloc.
382         (__default_alloc_template): To __pool_alloc.
383         * src/stl-inst.cc: Same.
384         * include/backward/alloc.h: Update.
385         * testsuite/ext/allocators.cc: Update.
386         
387         * src/globals.cc (__gnu_cxx): Remove _GLIBCPP_ASM_SYMVER. Should
388         really try to remove these if possible.
389         * src/locale.cc (std): Same.
391         * testsuite/abi_check.cc (check_version): Add.
393 2003-01-22  Benjamin Kosnik  <bkoz@redhat.com>
394             Sysoltsev Slawa  <Vyatcheslav.Sysoltsev@intel.com>
395             Mark Mitchell  <mark@codesourcery.com>
396         
397         PR libstdc++/9269
398         * include/std/std_fstream.h (basic_filebuf::uflow): Declare.
399         (basic_filebuf::underflow): Declare.
400         Move definitions.
402 2003-01-22  Benjamin Kosnik  <bkoz@redhat.com>
404         * include/bits/locale_facets.h: Move non-facet classes requiring
405         <string> to...  
406         * include/bits/locale_classes.h: New.  
407         * include/bits/Makefile.am (bits_headers_src): Add locale_classes.h.
408         * include/bits/Makefile.in: Regenerate.
410         * include/bits/locale_facets.tcc (__convert_from_v): Move to...
411         * config/locale/gnu/c_locale.h: ...here.
412         * config/locale/generic/c_locale.h: Same.
413         
414         * include/bits/locale_facets.tcc: Move declarations to...
415         * include/bits/locale_facets.h: ...here.
416         * include/bits/basic_ios.h: Tweak includes accordingly.
417         * include/std/std_sstream.h: Add streambuf include.
418         * include/std/std_fstream.h: Ditto.
419         * include/std/std_locale.h: Add locale_classes.h include.
420         * include/std/std_iosfwd.h: Tweak.
421         * src/concept-inst.cc: Add iterator include.
423         * config/linker-map.gnu: Specify __cxa functions, mark __cxa_dyn_*
424         bits as unexported in the future.
425         
426 2003-01-21  Benjamin Kosnik  <bkoz@redhat.com>
428         Reshuffle 22_locale testsuite.
429         * 22_locale/(codecvt.cc money_get.cc
430         codecvt_members_char_char.cc money_get_members_char.cc
431         codecvt_members_unicode_char.cc money_get_members_wchar_t.cc
432         codecvt_members_unicode_wchar_t.cc moneypunct_byname.cc
433         codecvt_members_wchar_t_char.cc moneypunct.cc collate_byname.cc
434         moneypunct_members_char.cc collate.cc moneypunct_members_wchar_t.cc
435         collate_members_char.cc money_put.cc collate_members_wchar_t.cc
436         money_put_members_char.cc ctor_copy_dtor.cc
437         money_put_members_wchar_t.cc ctype.cc num_get.cc ctype_is_char.cc
438         num_get_members_char.cc ctype_is_wchar_t.cc num_get_members_wchar_t.cc
439         ctype_members_char.cc numpunct_byname.cc ctype_members_wchar_t.cc
440         numpunct.cc ctype_narrow_char.cc numpunct_members_char.cc
441         ctype_narrow_wchar_t.cc numpunct_members_wchar_t.cc ctype_scan_char.cc
442         num_put.cc ctype_scan_wchar_t.cc num_put_members_char.cc
443         ctype_to_char.cc num_put_members_wchar_t.cc ctype_to_wchar_t.cc
444         operators.cc ctype_widen_char.cc static_members.cc
445         ctype_widen_wchar_t.cc time_get.cc facet.cc time_get_members_char.cc
446         global_templates.cc time_get_members_wchar_t.cc, members.cc,
447         time_put.cc, messages_byname.cc, time_put_members_char.cc,
448         messages.cc, time_put_members_wchar_t.cc, messages_members_char.cc): 
449         Splint up into individual test cases... 
450         * 22_locale/codecvt/1.cc: New.
451         * 22_locale/codecvt/2.cc: New.
452         * 22_locale/codecvt/always_noconv/char/1.cc: New.
453         * 22_locale/codecvt/always_noconv/char/wrapped_env.cc: New.
454         * 22_locale/codecvt/always_noconv/char/wrapped_locale.cc: New.
455         * 22_locale/codecvt/always_noconv/wchar_t/1.cc: New.
456         * 22_locale/codecvt/always_noconv/wchar_t/wrapped_env.cc: New.
457         * 22_locale/codecvt/always_noconv/wchar_t/wrapped_locale.cc: New.
458         * 22_locale/codecvt/encoding/char/1.cc: New.
459         * 22_locale/codecvt/encoding/char/wrapped_env.cc: New.
460         * 22_locale/codecvt/encoding/char/wrapped_locale.cc: New.
461         * 22_locale/codecvt/encoding/wchar_t/1.cc: New.
462         * 22_locale/codecvt/encoding/wchar_t/wrapped_env.cc: New.
463         * 22_locale/codecvt/encoding/wchar_t/wrapped_locale.cc: New.
464         * 22_locale/codecvt/in/char/1.cc: New.
465         * 22_locale/codecvt/in/char/wrapped_env.cc: New.
466         * 22_locale/codecvt/in/char/wrapped_locale.cc: New.
467         * 22_locale/codecvt/in/wchar_t/1.cc: New.
468         * 22_locale/codecvt/in/wchar_t/wrapped_env.cc: New.
469         * 22_locale/codecvt/in/wchar_t/wrapped_locale.cc: New.
470         * 22_locale/codecvt/length/char/1.cc: New.
471         * 22_locale/codecvt/length/char/wrapped_env.cc: New.
472         * 22_locale/codecvt/length/char/wrapped_locale.cc: New.
473         * 22_locale/codecvt/length/wchar_t/1.cc: New.
474         * 22_locale/codecvt/length/wchar_t/wrapped_env.cc: New.
475         * 22_locale/codecvt/length/wchar_t/wrapped_locale.cc: New.
476         * 22_locale/codecvt/max_length/char/1.cc: New.
477         * 22_locale/codecvt/max_length/char/wrapped_env.cc: New.
478         * 22_locale/codecvt/max_length/char/wrapped_locale.cc: New.
479         * 22_locale/codecvt/max_length/wchar_t/1.cc: New.
480         * 22_locale/codecvt/max_length/wchar_t/wrapped_env.cc: New.
481         * 22_locale/codecvt/max_length/wchar_t/wrapped_locale.cc: New.
482         * 22_locale/codecvt/out/char/1.cc: New.
483         * 22_locale/codecvt/out/char/wrapped_env.cc: New.
484         * 22_locale/codecvt/out/char/wrapped_locale.cc: New.
485         * 22_locale/codecvt/out/wchar_t/1.cc: New.
486         * 22_locale/codecvt/out/wchar_t/wrapped_env.cc: New.
487         * 22_locale/codecvt/out/wchar_t/wrapped_locale.cc: New.
488         * 22_locale/codecvt/unicode/char.cc: New.
489         * 22_locale/codecvt/unicode/wchar_t.cc: New.
490         * 22_locale/codecvt/unshift/char/1.cc: New.
491         * 22_locale/codecvt/unshift/char/wrapped_env.cc: New.
492         * 22_locale/codecvt/unshift/char/wrapped_locale.cc: New.
493         * 22_locale/codecvt/unshift/wchar_t/1.cc: New.
494         * 22_locale/codecvt/unshift/wchar_t/wrapped_env.cc: New.
495         * 22_locale/codecvt/unshift/wchar_t/wrapped_locale.cc: New.
496         * 22_locale/collate/1.cc: New.
497         * 22_locale/collate/2.cc: New.
498         * 22_locale/collate/compare/char/1.cc: New.
499         * 22_locale/collate/compare/char/2.cc: New.
500         * 22_locale/collate/compare/char/wrapped_env.cc: New.
501         * 22_locale/collate/compare/char/wrapped_locale.cc: New.
502         * 22_locale/collate/compare/wchar_t/1.cc: New.
503         * 22_locale/collate/compare/wchar_t/2.cc: New.
504         * 22_locale/collate/compare/wchar_t/wrapped_env.cc: New.
505         * 22_locale/collate/compare/wchar_t/wrapped_locale.cc: New.
506         * 22_locale/collate/hash/char/1.cc: New.
507         * 22_locale/collate/hash/char/2.cc: New.
508         * 22_locale/collate/hash/char/wrapped_env.cc: New.
509         * 22_locale/collate/hash/char/wrapped_locale.cc: New.
510         * 22_locale/collate/hash/wchar_t/1.cc: New.
511         * 22_locale/collate/hash/wchar_t/2.cc: New.
512         * 22_locale/collate/hash/wchar_t/wrapped_env.cc: New.
513         * 22_locale/collate/hash/wchar_t/wrapped_locale.cc: New.
514         * 22_locale/collate/transform/char/2.cc: New.
515         * 22_locale/collate/transform/char/wrapped_env.cc: New.
516         * 22_locale/collate/transform/char/wrapped_locale.cc: New.
517         * 22_locale/collate/transform/wchar_t/2.cc: New.
518         * 22_locale/collate/transform/wchar_t/wrapped_env.cc: New.
519         * 22_locale/collate/transform/wchar_t/wrapped_locale.cc: New.
520         * 22_locale/collate_byname/1.cc: New.
521         * 22_locale/ctype/1.cc: New.
522         * 22_locale/ctype/2.cc: New.
523         * 22_locale/ctype/cons/char/1.cc: New.
524         * 22_locale/ctype/cons/char/wrapped_env.cc: New.
525         * 22_locale/ctype/cons/char/wrapped_locale.cc: New.
526         * 22_locale/ctype/is/char/1.cc: New.
527         * 22_locale/ctype/is/char/2.cc: New.
528         * 22_locale/ctype/is/char/3.cc: New.
529         * 22_locale/ctype/is/char/wrapped_env.cc: New.
530         * 22_locale/ctype/is/char/wrapped_locale.cc: New.
531         * 22_locale/ctype/is/wchar_t/1.cc: New.
532         * 22_locale/ctype/is/wchar_t/2.cc: New.
533         * 22_locale/ctype/is/wchar_t/wrapped_env.cc: New.
534         * 22_locale/ctype/is/wchar_t/wrapped_locale.cc: New.
535         * 22_locale/ctype/narrow/char/1.cc: New.
536         * 22_locale/ctype/narrow/char/2.cc: New.
537         * 22_locale/ctype/narrow/char/wrapped_env.cc: New.
538         * 22_locale/ctype/narrow/char/wrapped_locale.cc: New.
539         * 22_locale/ctype/narrow/wchar_t/1.cc: New.
540         * 22_locale/ctype/narrow/wchar_t/2.cc: New.
541         * 22_locale/ctype/narrow/wchar_t/wrapped_env.cc: New.
542         * 22_locale/ctype/narrow/wchar_t/wrapped_locale.cc: New.
543         * 22_locale/ctype/scan/char/1.cc: New.
544         * 22_locale/ctype/scan/char/wrapped_env.cc: New.
545         * 22_locale/ctype/scan/char/wrapped_locale.cc: New.
546         * 22_locale/ctype/scan/wchar_t/1.cc: New.
547         * 22_locale/ctype/scan/wchar_t/wrapped_env.cc: New.
548         * 22_locale/ctype/scan/wchar_t/wrapped_locale.cc: New.
549         * 22_locale/ctype/to/char/1.cc: New.
550         * 22_locale/ctype/to/char/wrapped_env.cc: New.
551         * 22_locale/ctype/to/char/wrapped_locale.cc: New.
552         * 22_locale/ctype/to/wchar_t/1.cc: New.
553         * 22_locale/ctype/to/wchar_t/wrapped_env.cc: New.
554         * 22_locale/ctype/to/wchar_t/wrapped_locale.cc: New.
555         * 22_locale/ctype/widen/char/1.cc: New.
556         * 22_locale/ctype/widen/char/wrapped_env.cc: New.
557         * 22_locale/ctype/widen/char/wrapped_locale.cc: New.
558         * 22_locale/ctype/widen/wchar_t/1.cc: New.
559         * 22_locale/ctype/widen/wchar_t/wrapped_env.cc: New.
560         * 22_locale/ctype/widen/wchar_t/wrapped_locale.cc: New.
561         * 22_locale/facet/1.cc: New.
562         * 22_locale/facet/2.cc: New.
563         * 22_locale/global_templates/1.cc: New.
564         * 22_locale/locale/cons/1.cc: New.
565         * 22_locale/locale/cons/2.cc: New.
566         * 22_locale/locale/cons/3.cc: New.
567         * 22_locale/locale/cons/4.cc: New.
568         * 22_locale/locale/cons/5.cc: New.
569         * 22_locale/locale/cons/6.cc: New.
570         * 22_locale/locale/cons/7.cc: New.
571         * 22_locale/locale/global_locale_objects/1.cc: New.
572         * 22_locale/locale/global_locale_objects/2.cc: New.
573         * 22_locale/locale/global_locale_objects/3.cc: New.
574         * 22_locale/locale/operations/1.cc: New.
575         * 22_locale/locale/operations/2.cc: New.
576         * 22_locale/messages/1.cc: New.
577         * 22_locale/messages/2.cc: New.
578         * 22_locale/messages/members/char/1.cc: New.
579         * 22_locale/messages/members/char/2.cc: New.
580         * 22_locale/messages/members/char/3.cc: New.
581         * 22_locale/messages/members/char/wrapped_env.cc: New.
582         * 22_locale/messages/members/char/wrapped_locale.cc: New.
583         * 22_locale/messages_byname/1.cc: New.
584         * 22_locale/money_get/1.cc: New.
585         * 22_locale/money_get/2.cc: New.
586         * 22_locale/money_get/get/char/1.cc: New.
587         * 22_locale/money_get/get/char/2.cc: New.
588         * 22_locale/money_get/get/char/3.cc: New.
589         * 22_locale/money_get/get/char/4.cc: New.
590         * 22_locale/money_get/get/char/5.cc: New.
591         * 22_locale/money_get/get/char/6.cc: New.
592         * 22_locale/money_get/get/char/7.cc: New.
593         * 22_locale/money_get/get/char/8.cc: New.
594         * 22_locale/money_get/get/char/wrapped_env.cc: New.
595         * 22_locale/money_get/get/char/wrapped_locale.cc: New.
596         * 22_locale/money_get/get/wchar_t/1.cc: New.
597         * 22_locale/money_get/get/wchar_t/2.cc: New.
598         * 22_locale/money_get/get/wchar_t/3.cc: New.
599         * 22_locale/money_get/get/wchar_t/4.cc: New.
600         * 22_locale/money_get/get/wchar_t/5.cc: New.
601         * 22_locale/money_get/get/wchar_t/6.cc: New.
602         * 22_locale/money_get/get/wchar_t/7.cc: New.
603         * 22_locale/money_get/get/wchar_t/8.cc: New.
604         * 22_locale/money_get/get/wchar_t/wrapped_env.cc: New.
605         * 22_locale/money_get/get/wchar_t/wrapped_locale.cc: New.
606         * 22_locale/money_put/1.cc: New.
607         * 22_locale/money_put/2.cc: New.
608         * 22_locale/money_put/put/char/1.cc: New.
609         * 22_locale/money_put/put/char/2.cc: New.
610         * 22_locale/money_put/put/char/3.cc: New.
611         * 22_locale/money_put/put/char/4.cc: New.
612         * 22_locale/money_put/put/char/5.cc: New.
613         * 22_locale/money_put/put/char/6.cc: New.
614         * 22_locale/money_put/put/char/wrapped_env.cc: New.
615         * 22_locale/money_put/put/char/wrapped_locale.cc: New.
616         * 22_locale/money_put/put/wchar_t/1.cc: New.
617         * 22_locale/money_put/put/wchar_t/2.cc: New.
618         * 22_locale/money_put/put/wchar_t/3.cc: New.
619         * 22_locale/money_put/put/wchar_t/4.cc: New.
620         * 22_locale/money_put/put/wchar_t/5.cc: New.
621         * 22_locale/money_put/put/wchar_t/6.cc: New.
622         * 22_locale/money_put/put/wchar_t/wrapped_env.cc: New.
623         * 22_locale/money_put/put/wchar_t/wrapped_locale.cc: New.
624         * 22_locale/moneypunct/1.cc: New.
625         * 22_locale/moneypunct/2.cc: New.
626         * 22_locale/moneypunct/3.cc: New.
627         * 22_locale/moneypunct/members/char/1.cc: New.
628         * 22_locale/moneypunct/members/char/2.cc: New.
629         * 22_locale/moneypunct/members/char/wrapped_env.cc: New.
630         * 22_locale/moneypunct/members/char/wrapped_locale.cc: New.
631         * 22_locale/moneypunct/members/wchar_t/1.cc: New.
632         * 22_locale/moneypunct/members/wchar_t/2.cc: New.
633         * 22_locale/moneypunct/members/wchar_t/wrapped_env.cc: New.
634         * 22_locale/moneypunct/members/wchar_t/wrapped_locale.cc: New.
635         * 22_locale/moneypunct_byname/1.cc: New.
636         * 22_locale/num_get/1.cc: New.
637         * 22_locale/num_get/2.cc: New.
638         * 22_locale/num_get/get/char/1.cc: New.
639         * 22_locale/num_get/get/char/2.cc: New.
640         * 22_locale/num_get/get/char/3.cc: New.
641         * 22_locale/num_get/get/char/4.cc: New.
642         * 22_locale/num_get/get/char/5.cc: New.
643         * 22_locale/num_get/get/char/6.cc: New.
644         * 22_locale/num_get/get/char/wrapped_env.cc: New.
645         * 22_locale/num_get/get/char/wrapped_locale.cc: New.
646         * 22_locale/num_get/get/wchar_t/1.cc: New.
647         * 22_locale/num_get/get/wchar_t/2.cc: New.
648         * 22_locale/num_get/get/wchar_t/3.cc: New.
649         * 22_locale/num_get/get/wchar_t/4.cc: New.
650         * 22_locale/num_get/get/wchar_t/5.cc: New.
651         * 22_locale/num_get/get/wchar_t/6.cc: New.
652         * 22_locale/num_get/get/wchar_t/wrapped_env.cc: New.
653         * 22_locale/num_get/get/wchar_t/wrapped_locale.cc: New.
654         * 22_locale/num_put/1.cc: New.
655         * 22_locale/num_put/2.cc: New.
656         * 22_locale/num_put/put/char/1.cc: New.
657         * 22_locale/num_put/put/char/2.cc: New.
658         * 22_locale/num_put/put/char/3.cc: New.
659         * 22_locale/num_put/put/char/4.cc: New.
660         * 22_locale/num_put/put/char/5.cc: New.
661         * 22_locale/num_put/put/char/wrapped_env.cc: New.
662         * 22_locale/num_put/put/char/wrapped_locale.cc: New.
663         * 22_locale/num_put/put/wchar_t/1.cc: New.
664         * 22_locale/num_put/put/wchar_t/2.cc: New.
665         * 22_locale/num_put/put/wchar_t/3.cc: New.
666         * 22_locale/num_put/put/wchar_t/4.cc: New.
667         * 22_locale/num_put/put/wchar_t/5.cc: New.
668         * 22_locale/num_put/put/wchar_t/wrapped_env.cc: New.
669         * 22_locale/num_put/put/wchar_t/wrapped_locale.cc: New.
670         * 22_locale/numpunct/1.cc: New.
671         * 22_locale/numpunct/2.cc: New.
672         * 22_locale/numpunct/members/char/1.cc: New.
673         * 22_locale/numpunct/members/char/2.cc: New.
674         * 22_locale/numpunct/members/char/wrapped_env.cc: New.
675         * 22_locale/numpunct/members/char/wrapped_locale.cc: New.
676         * 22_locale/numpunct/members/wchar_t/1.cc: New.
677         * 22_locale/numpunct/members/wchar_t/2.cc: New.
678         * 22_locale/numpunct/members/wchar_t/wrapped_env.cc: New.
679         * 22_locale/numpunct/members/wchar_t/wrapped_locale.cc: New.
680         * 22_locale/numpunct_byname/1.cc: New.
681         * 22_locale/numpunct_byname/2.cc: New.
682         * 22_locale/time_get/1.cc: New.
683         * 22_locale/time_get/2.cc: New.
684         * 22_locale/time_get/date_order/char/1.cc: New.
685         * 22_locale/time_get/date_order/char/wrapped_env.cc: New.
686         * 22_locale/time_get/date_order/char/wrapped_locale.cc: New.
687         * 22_locale/time_get/date_order/wchar_t/1.cc: New.
688         * 22_locale/time_get/date_order/wchar_t/wrapped_env.cc: New.
689         * 22_locale/time_get/date_order/wchar_t/wrapped_locale.cc: New.
690         * 22_locale/time_get/get_date/char/1.cc: New.
691         * 22_locale/time_get/get_date/char/2.cc: New.
692         * 22_locale/time_get/get_date/char/3.cc: New.
693         * 22_locale/time_get/get_date/char/wrapped_env.cc: New.
694         * 22_locale/time_get/get_date/char/wrapped_locale.cc: New.
695         * 22_locale/time_get/get_date/wchar_t/1.cc: New.
696         * 22_locale/time_get/get_date/wchar_t/2.cc: New.
697         * 22_locale/time_get/get_date/wchar_t/3.cc: New.
698         * 22_locale/time_get/get_date/wchar_t/wrapped_env.cc: New.
699         * 22_locale/time_get/get_date/wchar_t/wrapped_locale.cc: New.
700         * 22_locale/time_get/get_monthname/char/1.cc: New.
701         * 22_locale/time_get/get_monthname/char/2.cc: New.
702         * 22_locale/time_get/get_monthname/char/3.cc: New.
703         * 22_locale/time_get/get_monthname/char/wrapped_env.cc: New.
704         * 22_locale/time_get/get_monthname/char/wrapped_locale.cc: New.
705         * 22_locale/time_get/get_monthname/wchar_t/1.cc: New.
706         * 22_locale/time_get/get_monthname/wchar_t/2.cc: New.
707         * 22_locale/time_get/get_monthname/wchar_t/3.cc: New.
708         * 22_locale/time_get/get_monthname/wchar_t/wrapped_env.cc: New.
709         * 22_locale/time_get/get_monthname/wchar_t/wrapped_locale.cc: New.
710         * 22_locale/time_get/get_time/char/1.cc: New.
711         * 22_locale/time_get/get_time/char/2.cc: New.
712         * 22_locale/time_get/get_time/char/3.cc: New.
713         * 22_locale/time_get/get_time/char/wrapped_env.cc: New.
714         * 22_locale/time_get/get_time/char/wrapped_locale.cc: New.
715         * 22_locale/time_get/get_time/wchar_t/1.cc: New.
716         * 22_locale/time_get/get_time/wchar_t/2.cc: New.
717         * 22_locale/time_get/get_time/wchar_t/3.cc: New.
718         * 22_locale/time_get/get_time/wchar_t/wrapped_env.cc: New.
719         * 22_locale/time_get/get_time/wchar_t/wrapped_locale.cc: New.
720         * 22_locale/time_get/get_weekday/char/1.cc: New.
721         * 22_locale/time_get/get_weekday/char/2.cc: New.
722         * 22_locale/time_get/get_weekday/char/3.cc: New.
723         * 22_locale/time_get/get_weekday/char/wrapped_env.cc: New.
724         * 22_locale/time_get/get_weekday/char/wrapped_locale.cc: New.
725         * 22_locale/time_get/get_weekday/wchar_t/1.cc: New.
726         * 22_locale/time_get/get_weekday/wchar_t/2.cc: New.
727         * 22_locale/time_get/get_weekday/wchar_t/3.cc: New.
728         * 22_locale/time_get/get_weekday/wchar_t/wrapped_env.cc: New.
729         * 22_locale/time_get/get_weekday/wchar_t/wrapped_locale.cc: New.
730         * 22_locale/time_get/get_year/char/1.cc: New.
731         * 22_locale/time_get/get_year/char/3.cc: New.
732         * 22_locale/time_get/get_year/char/wrapped_env.cc: New.
733         * 22_locale/time_get/get_year/char/wrapped_locale.cc: New.
734         * 22_locale/time_get/get_year/wchar_t/1.cc: New.
735         * 22_locale/time_get/get_year/wchar_t/3.cc: New.
736         * 22_locale/time_get/get_year/wchar_t/wrapped_env.cc: New.
737         * 22_locale/time_get/get_year/wchar_t/wrapped_locale.cc: New.
738         * 22_locale/time_put/1.cc: New.
739         * 22_locale/time_put/2.cc: New.
740         * 22_locale/time_put/put/char/1.cc: New.
741         * 22_locale/time_put/put/char/10.cc: New.
742         * 22_locale/time_put/put/char/2.cc: New.
743         * 22_locale/time_put/put/char/3.cc: New.
744         * 22_locale/time_put/put/char/4.cc: New.
745         * 22_locale/time_put/put/char/5.cc: New.
746         * 22_locale/time_put/put/char/6.cc: New.
747         * 22_locale/time_put/put/char/7.cc: New.
748         * 22_locale/time_put/put/char/8.cc: New.
749         * 22_locale/time_put/put/char/9.cc: New.
750         * 22_locale/time_put/put/char/wrapped_env.cc: New.
751         * 22_locale/time_put/put/char/wrapped_locale.cc: New.
752         * 22_locale/time_put/put/wchar_t/1.cc: New.
753         * 22_locale/time_put/put/wchar_t/10.cc: New.
754         * 22_locale/time_put/put/wchar_t/2.cc: New.
755         * 22_locale/time_put/put/wchar_t/3.cc: New.
756         * 22_locale/time_put/put/wchar_t/4.cc: New.
757         * 22_locale/time_put/put/wchar_t/5.cc: New.
758         * 22_locale/time_put/put/wchar_t/6.cc: New.
759         * 22_locale/time_put/put/wchar_t/7.cc: New.
760         * 22_locale/time_put/put/wchar_t/8.cc: New.
761         * 22_locale/time_put/put/wchar_t/9.cc: New.
762         * 22_locale/time_put/put/wchar_t/wrapped_env.cc: New.
763         * 22_locale/time_put/put/wchar_t/wrapped_locale.cc: New.
765 2003-01-16  Jeffrey D. Oldham  <oldham@codesourcery.com>
767         * config/locale/generic/messages_members.h
768         (messages_byname<_CharT>::messages_byname): Use this-> to refer to
769         unqualified members of base clasess.
771 2003-01-16  Mark Mitchell  <mark@codesourcery.com>
772             Jeffrey Oldham <oldham@codesourcery.com>
773         
774         * config/locale/gnu/messages_members.h: Use this-> to refer to
775         unqualified members of base clasess.
776         * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Likewise.
777         * include/bits/codecvt.h: Likewise.
778         * include/bits/deque.tcc: Likewise.
779         * include/bits/fstream.tcc: Likewise.
780         * include/bits/istream.tcc: Likewise.
781         * include/bits/list.tcc: Likewise.
782         * include/bits/locale_facets.h: Likewise.
783         * include/bits/ostream.tcc: Likewise.
784         * include/bits/sstream.tcc: Likewise.
785         * include/bits/stl_bvector.h: Likewise.
786         * include/bits/stl_deque.h: Likewise.
787         * include/bits/stl_list.h: Likewise.
788         * include/bits/stl_tree.h: Likewise.
789         * include/bits/stl_vector.h: Likewise.
790         * include/bits/vector.tcc: Likewise.
791         * include/ext/ropeimpl.h: Likewise.
792         * include/ext/stdio_filebuf.h: Likewise.
793         * include/ext/stl_rope.h: Likewise.
794         * include/std/std_fstream.h: Likewise.
795         * include/std/std_sstream.h: Likewise.
796         
797 2003-01-15  Phil Edwards  <pme@gcc.gnu.org>
799         * include/bits/basic_string.tcc (_S_string_copy): Unused, remove.
801 2003-01-15  Benjamin Kosnik  <bkoz@redhat.com>
803         * acinclude.m4 (GLIBCPP_CHECK_WCHAR_T_SUPPORT): Substitute
804         GLIBCPP_TEST_WCHAR_T if building wchar_t bits in the library.
805         * aclocal.m4: Regenerate.
806         * configure: Regenerate.
807         * testsuite/Makefile.am (all-local): Add conditional rule to
808         generate testsuite_wchar_t.
809         * testsuite/Makefile.in: Regenerate.
810         * testsuite/lib/libstdc++-v3-dg.exp
811         (libstdc++-v3-list-sourcefiles): Remove wchar_t files if
812         testsuite_wchar_t is not present in the build directory.
813         * testsuite/libstdc++-v3.dg/dg.exp: Add -g -O2 to DEFAULT_CXXFLAGS.
814         Remove setulimit bits.
815         * testsuite/26_numerics/complex_value.cc: Set to noopts.
816         * testsuite/Makefile.am (CLEANFILES): Add.
817         * testsuite/Makefile.in: Regenerate.    
818         
819 2003-01-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
821         * config/os/hpux/os_defines.h (_GLIBCPP_GTHREAD_USE_WEAK): Define for
822         __hppa__.
824 2003-01-14  Jeffrey D. Oldham  <oldham@codesourcery.com>
826         Further conform g++'s __vmi_class_type_info to the C++ ABI
827         specification.
828         * libsupc++/cxxabi.h
829         (__vmi_class_type_info::__flags_masks): Remove enumerations not
830         required by the specification.
832 2003-01-12  Benjamin Kosnik  <bkoz@redhat.com>
834         Renames, namespaces for testsuite utilities.    
835         * testsuite/testsuite_hooks.h: Put into namespace __gnu_cxx_test.
836         (gnu_allocator_tracker): Rename to allocation_tracker.
837         (gnu_new_allocator): Rename to tracker_alloc.
838         (__set_testsuite_memlimit): Rename to set_memory_limits.
839         (gnu_assignment_operator): Rename to assignment_operator.
840         (gnu_destructor): Rename to destructor.
841         (gnu_copy_tracker): Rename to copy_tracker.
842         (gnu_char, gnu_int, gnu_long): Rename to pod_char, pod_int, pod_long.
843         (run_tests_wrapped_locale): New.
844         (run_tests_wrapped_env): New.
845         * testsuite/testsuite_hooks.cc: Same.
846         (class locale_data): Add.
847         (class enviornment_variable): Add.
848         (class not_found): Add.
849         * testsuite/testsuite_allocator.h: Same.
850         * testsuite/testsuite_allocator.cc: Same.
851         * testsuite/23_containers/deque_ctor.cc
852         (test_copy_ctor_exception_safety): Change gnu_allocator_tracker to
853         allocation_tracker. 
854         Change gnu_new_allocator to tracker_alloc.
855         Change gnu_counting_struct to counter.
856         Change gnu_copy_tracker to copy_tracker.
857         Change gnu_copy_constructor to copy_constructor.
858         Change gnu_assignment_operator to assignment_operator.  
859         Inject.
860         * testsuite/23_containers/vector_capacity.cc: Same.
861         * testsuite/23_containers/vector_ctor.cc (test01): Same.
862         * testsuite/23_containers/list_modifiers.cc: Change
863         gnu_copy_tracker to copy_tracker.
864         * testsuite/21_strings/ctor_copy_dtor.cc (main): Change
865         __set_testsuite_memlimit to set_memory_limits.
866         * testsuite/21_strings/insert.cc (main): Same.
867         * testsuite/27_io/filebuf.cc: Change gnu_char to pod_char.
868         * testsuite/27_io/stringstream.cc: Same.
869         * testsuite/27_io/stringbuf.cc: Same.
870         * testsuite/27_io/streambuf.cc: Same.
871         * testsuite/27_io/ostream.cc: Same.
872         * testsuite/27_io/istream.cc: Same.
873         * testsuite/27_io/fstream.cc: Same.
874         * testsuite/lib/libstdc++-v3-dg.exp
875         (libstdc++-v3-list-sourcefiles): Additionally handle files two and
876         three levels deeper in glob patterns.
878 2003-01-11  Phil Edwards  <pme@gcc.gnu.org>
880         * docs/doxygen/tables.html:  Finished now.
881         * docs/doxygen/user.cfg.in:  Update to latest version of Doxygen.
882         * include/bits/basic_ios.h (basic_ios::rdbuf):  Add example to
883         comments.
885         * include/bits/deque.tcc, include/bits/stl_alloc.h,
886         include/bits/stl_deque.h, include/bits/stl_list.h,
887         include/bits/stl_vector.h:  Remove _GLIBCPP_DEPRECATED bits scheduled
888         for 3.4 removal.
890 2003-01-09  Benjamin Kosnik  <bkoz@redhat.com>
892         * configure.in: Revert.
893         * configure: Regenerate.
895 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
897         * include/Makefile.am (install-data-local): Prepend
898         $(DESTDIR) to destination paths in all (un)installation
899         commands.  Use ${c_base_builddir} and ${std_builddir}
900         as destination subdirectories to achieve consistency with
901         preceding mkinstalldirs commands.  No effect because both
902         variables contain "." only.
903         * include/Makefile.in: Regenerate.
905 2003-01-08  Benjamin Kosnik  <bkoz@redhat.com>
907         * include/Makefile.am (stamp-*): Add checks for existing stamps.
908         * include/Makefile.in: Regenerate.
910         * acinclude.m4 (GLIBCPP_ENABLE_DEBUG): Correct comment.
911         * aclocal.m4: Regenerate.
913         * configure.in: Don't add new multi-do rules every time the
914         directory is reconfigured.
915         * configure: Regenerate.
916         
917 2003-01-08  Brad Spencer  <spencer@infointeractive.com>
918             Nathan Myers  <ncm@cantrip.org>
919         
920         * src/Makefile.am (stamp-debug): Clean.
921         * src/Makefile.in: Regenerate.
922         
923 2003-01-07  Benjamin Kosnik  <bkoz@redhat.com>
925         PR libstdc++/8707
926         * Makefile.am (distclean-multi): Fix.
927         * Makefile.in: Regenerate.
928         
929 2003-01-06  Benjamin Kosnik  <bkoz@redhat.com>
931         * include/bits/locale_facets.h (messages): Move ctor, dtor
932         definitions to..
933         (__timepunct): Same.
934         * config/locale/gnu/messages_members.h (messages): Add dtor, ctor
935         definitions. Conditionalize for GNU systems.
936         * config/locale/generic/messages_members.h (messages): Add dtor, ctor
937         definitions.
938         * config/locale/gnu/time_members.h (messages): New. Add dtor, ctor
939         definitions. Conditionalize for GNU systems.
940         * config/locale/generic/time_members.h (messages): New. Add dtor, ctor
941         definitions.
942         * include/bits/localefwd.h (locale::facet::_S_c_name): Add.
943         * src/locale.cc: Define.
944         * src/localename.cc (locale::_Impl::_Impl(facet**, size_t, bool):
945         Use it.
946         * config/locale/gnu/time_members.h: Use it.
947         * config/locale/gnu/messages_members.h: Use it.
948         * config/linker-map.gnu: Add locale::facets details.    
949         * include/Makefile.am (target_headers_extra): Add time_members.h.
950         * include/Makefile.in: Regenerate.
951         * acinclude.m4: Export CTIME_H.
952         * aclocal.m4: Regenerate.
953         * configure: Regnerate.
955 2003-01-06  Paolo Carlini  <pcarlini@unitus.it>
957         * src/codecvt.cc
958         (codecvt<char, char, mbstate_t>::do_in, do_out):
959         Tweak parameters to avoid unused parameter warnings.
961 2003-01-06  Paolo Carlini  <pcarlini@unitus.it>
963         PR libstdc++/9151
964         * include/bits/locale_facets.cc (num_put::_M_convert_float):
965         Limit __prec to digits10 + 2, not digits10 + 1, taking into
966         account the possibility of %{g,G} conversion specifiers
967         inside _S_format_float.
968         * testsuite/27_io/ostream_inserter_arith.cc (test06): Add.
970 2003-01-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
972         * testsuite/lib/libstdc++-v3-dg.exp (libstdc++-v3-init,
973         libstdc++-v3-list-sourcefiles): Additionally handle files one
974         level deeper in glob patterns.
975         
976         * testsuite/27_io/istream_extractor_arith.cc: Delete, split...
977         * testsuite/27_io/istream_extractor_arith/01.cc,
978         testsuite/27_io/istream_extractor_arith/02.cc,
979         testsuite/27_io/istream_extractor_arith/03.cc,
980         testsuite/27_io/istream_extractor_arith/06.cc,
981         testsuite/27_io/istream_extractor_arith/07.cc,
982         testsuite/27_io/istream_extractor_arith/08.cc,
983         testsuite/27_io/istream_extractor_arith/09.cc,
984         testsuite/27_io/istream_extractor_arith/10.cc,
985         testsuite/27_io/istream_extractor_arith/11.cc,
986         testsuite/27_io/istream_extractor_arith/12.cc,
987         testsuite/27_io/istream_extractor_arith/13.cc: ... to new files.
988         * testsuite/27_io/istream_extractor_arith/12.cc: Add XFAIL for
989         sparc*-*-solaris2*.
991 2003-01-05  Paolo Carlini <pcarlini@unitus.it>
993         PR libstdc++/9168
994         * src/codecvt.cc
995         (codecvt<char, char, mbstate_t>::do_in, do_out):
996         Implement the resolution of DR19 (TC).
997         * testsuite/22_locale/codecvt_members_char_char.cc
998         (test01): Tweak.
1000 2003-01-02  Jason Merrill  <jason@redhat.com>
1002         * config/cpu/i486/atomicity.h (__exchange_and_add, __atomic_add):
1003         *__mem is also an output.
1004         * config/cpu/m68k/atomicity.h (__exchange_and_add): Likewise.