* dwarf2out.c (output_comp_unit): Always output a compilation-unit
[official-gcc.git] / libstdc++-v3 / ChangeLog
blob0b1ee9b11bc3035586ebac4ad4b44811bbac9a4c
1 2001-05-18  Alexandre Oliva  <aoliva@redhat.com>
3         * configure.target (ATOMICITYH): Actually use AIX-specific code on
4         earlier versions of AIX 4.*.
6 2001-05-18  Gabriel Dos Reis  <gdr@codesourcery.com>
8         * include/bits/std_valarray.h (valarray<>::operator[] const):
9         Return a const reference.
10         * testsuite/26_numerics/valarray_const_bracket.cc: New test.
12 2001-05-18  Alexandre Oliva  <aoliva@redhat.com>
14         * configure.target (ATOMICITYH): Use cpu/generic code on earlier
15         versions of AIX.
17 2001-05-17  Alexandre Oliva  <aoliva@redhat.com>
19         * configure.target (ATOMICITYH): Don't use AIX 4.3-specific code
20         on earlier versions of AIX.
22 2001-05-15  Mark Mitchell  <mark@codesourcery.com>
24         * porting.texi: Correct documentation about handling
25         _LARRGEFILE_SOURCE and its ilk.
26         * config/os/solaris/solaris2.5/bits/os_defines.h: Remove
27         definitions of _XOPEN_SOURCE, _LARGEFILE64_SOURCE, and 
28         __EXTENSIONS__.
29         * config/os/solaris/solaris2.6/bits/os_defines.h: Likewise.
30         * config/os/solaris/solaris2.7/bits/os_defines.h: Likewise.
32 001-05-15  Zack Weinberg  <zackw@stanford.edu>
33         
34         * testsuite/21_strings/inserters_extractors.cc,
35         testsuite/27_io/istream_unformatted.cc,
36         testsuite/27_io/stringstream.cc:
37         Replace multi-line string constants with C89-style
38         concatenated string constants.
40 2001-05-14  Richard Henderson  <rth@redhat.com>
42         * mknumeric_limits: Build with -fno-exceptions.
44 2001-05-13   Benjamin Kosnik  <bkoz@redhat.com>
46         Switch over to new harness.
47         * testsuite_flags.in: Tweaks via Gaby.
48         * testsuite/Makefile.am: Change tool to libstdc++-v3.
49         (EXPECT): Quote directly.
50         (RUNTEST): Same.
51         * configure.in: Output testsuite_flags.
52         * acinclude.m4: Substitute src, bld, and prefix dirs.
53         Remove glibcpp_expect, glibcpp_runtestflags.
54         * Makefile.am (RUNTESTFLAGS): Pass this down to subdirs.
55         * mkcheck.in: Port to new interface.
56         
57         * aclocal.m4: Regerate.
58         * configure: Regnerate.
59         * Makefile.in: Regnerate.
60         * */Makefile.in: Regenerate.
61         
62         * tests_flags.in: Remove.
63         * testsuite/lib/libstdc++.exp: Remove.
64         * testsuite/libstdc++.tests/tests.exp: Remove.
66 2001-05-13  Alexandre Oliva  <aoliva@redhat.com>
68         * configure.target: Remove detection of AIX pthread multilib, now
69         obtained from `gcc -v'.
71 2001-05-13  John David Anglin  <dave@hiauly1.hia.nrc.ca>
73         * mkcheck.in (setup_size_command): Use Berkeley "-B" mode with GNU
74         size.  Add hpux case for HP size.
76 2001-05-11   Benjamin Kosnik  <bkoz@redhat.com>
78         * testsuite_flags.in: New, simplified interface.
79         * testsuite/lib/libstdc++-v3-dg.exp: New test harness.
80         * testsuite/libstdc++-v3.dg: Add.
81         * testsuite/libstdc++-v3.dg/dg.exp: Add.        
83 2001-05-11   Benjamin Kosnik  <bkoz@redhat.com>
85         * testsuite/*/*.cc: Remove spaces, make sure testcases return zero.
86         * testsuite/config/default.exp: Update bugs email address.
87         
88 2001-05-11  Richard Henderson  <rth@redhat.com>
90         * libsupc++/eh_personality.cc: Include unwind-pe.h.  Remove
91         all pointer encoding logic.
92         (struct lsda_header_info): Add ttype_base.
93         (get_ttype_entry): Use it instead of a context.
94         (check_exception_spec): Likewise.
95         (PERSONALITY_FUNCTION): Initialize ttype_base.  Store it in
96         the c++ exception header for __cxa_call_unexpected.
97         (__cxa_call_unexpected): Use it.
99 2001-05-09  Benjamin Kosnik  <bkoz@redhat.com>
101         * testsuite/lib/libstdc++.exp: Use libgloss.exp. Call
102         libgloss_link_flags to find crt0.o for targets that use libgloss
103         instead of newlib.
104         Change LDFLAGS to LIBS.
105         Consistently name procedures libstdc++-XXX.
106         * testsuite/libstdc++.tests/tests.exp: Use new procedure names.
107         
108 2001-05-08  Benjamin Kosnik  <bkoz@fillmore.constant.com>
110         * include/c_std/bits/std_cstring.h (memchr): Correct definitions.
111         (strchr): Same.
112         (strpbrk): Same.
113         (strrchr): Same.
114         (strstr): Same.
115         * include/c_std/bits/std_cwchar.h (wcschr): Same.
116         (wcsbrk): Same.
117         (wcsrchr): Same.
118         (wcsstr): Same.
119         (wmemchr): Same.
120         * testsuite/21_strings/c_strings.cc: Add tests.
121         
122 2001-05-07  Benjamin Kosnik  <bkoz@redhat.com>
124         libstdc++/2523
125         * include/bits/std_fstream.h (basic_filebuf): Change signature.
126         * include/bits/fstream.tcc (basic_filebuf): Change bool argument
127         to int_type, pass in buffer size info.
128         * include/bits/std_streambuf.h (_M_is_indeterminate): Check for
129         unbuffered situation.
130         (underflow): Remove codecvt bits for the time being.
131         * include/bits/istream.tcc (istream::sentry): Avoid sputbackc call.
132         * include/bits/locale_facets.tcc (_M_extract): Cache dereference
133         values from iterators, clean.
134         * src/locale.cc: Ditto.
135         * include/bits/sbuf_iter.h: Format.
136         * src/ios.cc: Explicitly pass in buffer sizes at creation time.
137         * testsuite/27_io/narrow_stream_objects.cc: Add tests.
138         * testsuite/27_io/filebuf.cc: Tweaks.
139         * testsuite/27_io/filebuf_members.cc: Tweaks.
140         
141 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
143         * config/os/solaris/solaris2.7/bits/os_defines.h
144         (_LARGEFILE_SOURCE): Define it.
146 2001-05-03  Alexandre Oliva  <aoliva@redhat.com>
148         * configure.in (LIBSUPCXX_PICFLAGS): Set it to -prefer-pic or
149         -prefer-non-pic depending on whether libtool has shared libraries
150         enabled or disabled.
151         * libsupc++/Makefile.am (LIBSUPCXX_CXXFLAGS): Set to
152         $(LIBSUPCXX_PICFLAGS).
153         * configure, */Makefile.in: Rebuilt.
155 2001-05-01  Benjamin Kosnik  <bkoz@redhat.com>
157         * include/bits/sbuf_iter.h (istreambuf_iterator): Correct.
158         * testsuite/24_iterators/istreambuf_iterator.cc (test02): Add test.
160         * include/bits/std_sstream.h (stringbuf): Leak
161         copied string.
162         * testsuite/24_iterators/ostreambuf_iterator.cc: Correct.
163         
164 2001-05-01  Tom Browder  <tbrowder@home.com>
166         * docs/html/ext/howto.html:  Fix typo.
168 2001-05-01  Gabriel Dos Reis  <gdr@codesourcery.com>
170         * testsuite/libstdc++.tests/tests.exp: Add comment.
172 2001-05-01  Gabriel Dos Reis  <gdr@codesourcery.com>
174         * testsuite/libstdc++.tests/tests.exp: Set ulimits.
176 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
178         * porting.texi: Use the GFDL.
180 2001-04-30  Benjamin Kosnik  <bkoz@redhat.com>
182         libstdc++/2627 
183         * testsuite/24_iterators/ostreambuf_iterator.cc: New file.
184         * include/bits/sbuf_iter.h (ostreambuf_iterator): Remove bogus
185         specializations.
187 2001-04-30  Benjamin Kosnik  <bkoz@redhat.com>
189         libstdc++/2964
190         * include/bits/stl_iterator_base_funcs.h (__advance): Fix.
192 2001-04-28  Phil Edwards  <pme@sources.redhat.com>
194         * docs/doxygen/run_doxygen:  Minor tweaks.
195         * docs/doxygen/style.css:  New file.
196         * docs/doxygen/user.cfg.in:  Update using "doxygen -u" to get the
197         latest parameters available.  Use style.css.
199 2001-04-27  Benjamin Kosnik  <bkoz@redhat.com>
201         * docs/doxygen/mainpage.doxy: New.
202         * docs/doxygen/user.cfg.in: Change default configuration. Single
203         frame, other tweaks.
205 2001-04-26  Mark Mitchell  <mark@codesourcery.com>
207         * docs/html/17_intro/BADNAMES: Remove EGCS reference.
208         Indicate obsolete nature of thelist for G++ 3.0.
210 2001-04-26  Alexandre Oliva  <aoliva@redhat.com>
212         * acinclude.m4 (GLIBCPP_ENABLE_THREADS): Obtain
213         target_thread_file with `gcc -v'.
214         * aclocal.m4, configure: Rebuilt.
216 2001-04-25  Benjamin Kosnik  <bkoz@redhat.com>
218         * include/c_std/bits/std_cmath.h (std): Explicitly inject c99 names.
219         * include/c_std/bits/std_cstdlib.h (std): Same, except for llabs.
220         * include/c_std/bits/std_cwchar.h (std): Same.
221         * acconfig.h (std): Remove c99 injection into std.
222         * config.h.in: Regenerate.
223         
224         * testsuite/README: Fix typo.
226         * include/bits/codecvt.h: Remove warnings.
227         
228 2001-04-24  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
230         * include/ext/slist: Include required header files. 
232 2001-04-23  Loren J. Rittle  <ljrittle@acm.org>
234         * include/c_std/bits/std_cerrno.h (errno): Define macro from
235         identifier declared with external linkage, if needed.
236         * include/c_std/bits/std_csetjmp.h (setjmp): Likewise.
237         * include/c_std/bits/std_cstdarg.h (va_end): Likewise.
239 2001-04-23  Benjamin Kosnik  <bkoz@fillmore.constant.com>
241         * acinclude.m4 (CXX): Set to glibcpp_CXX so that in-directory
242         re-configures find the build compiler.
243         (GLIBCPP_ENABLE_C99): Do all fp-tests with 0.0, not 0. Fixes
244         libstdc++/2609.
245         * aclocal.m4: Regenerate.
246         * configure: Regenerate.
248 2001-04-20  Benjamin Kosnik  <bkoz@redhat.com>
250         * acinclude.m4 (GLIBCPP_ENABLE_LONG_LONG): Make sure required C99
251         support is enabled correctly before long long is activated.
252         * aclocal.m4: Regenerate.
253         * configure: Regenerate.
254         
255         * include/backward/backward_warning.h: Format correctly.
257         * testsuite/26_numerics/c99_classification_macros_c.cc: Add.
258         * testsuite/26_numerics/c99_classification_macros_c++.cc: Add.
259         * testsuite/26_numerics/c99_macros.cc: Remove.
260         
261 2001-04-20  Phil Edwards  <pme@sources.redhat.com>
263         * include/bits/stl_bvector.h:  Replace __ITERATOR_CATEGORY with
264         __iterator_category.
266 2001-04-19  Benjamin Kosnik  <bkoz@redhat.com>
268         * acconfig.h (_GLIBCPP_USE_C99): Add.
269         * config.h.in: Regenerate.
270         * acinclude.m4 (GLIBCPP_ENABLE_C99): New macro. Test for ISO/IEC
271         9899: 1999 support.
272         * aclocal.m4: Regenerate.
273         * configure.in (GLIBCPP_ENABLE_C99): Use it, on by default.
274         * configure: Regenerate.
275         * configure.in (GLIBCPP_ENABLE_LONG_LONG): Set default to yes.
276         * configure: Regenerate.
277         * include/c_std/bits/std_cwchar.h: Put wcstold, wcstoll, wcstoull
278         into c99.
279         * include/c_std/bits/std_cmath.h: Bring C99 functions into c99
280         namespace.
281         * include/c_std/bits/std_cstdlib.h: Same.
282         * docs/html/configopts.html: Update.
283         * testsuite/26_numerics/c99_macros.cc: Edit, use cmath instead of
284         math.h
285         (test_c99_classify): Add.
286         * config/os/gnu-linux/bits/os_defines.h (_GNU_SOURCE): Remove.
287         (_ISOC99_SOURCE): Remove.
289         * include/bits/stl_algo.h: Use _GLIBCPP_HAVE_DRAND48.
290         * include/bits/c++config (__STL_ASSERTIONS): Simplify.
291         * acinclude.m4 (GLIBCPP_CHECK_STDLIB_SUPPORT): Add check for drand48.
292         * aclocal.m4: Regenerate.
293         * configure: Regenerate.
294         
295 2001-04-19  Phil Edwards  <pme@sources.redhat.com>
297         * Makefile.am (doxygen):  Assume script is missing execute perms.
298         * Makefile.in:  Regenerated.
299         * docs/doxygen/user.cfg.in:  Add class diagrams and source browsing.
301 2001-04-17  Loren J. Rittle  <ljrittle@acm.org>
303         * testsuite/27_io/istream_seeks.cc: Inform DejaGnu of required files.
305 2001-04-17  Benjamin Kosnik  <bkoz@redhat.com>
307         * testsuite/23_containers/map_operators.cc: Add dg-excess-errors.
308         * testsuite/23_containers/set_operators.cc: Same.
310         * include/bits/c++config: Add _GLIBCPP_CONCEPT_CHECKS. Disable by
311         default.
312         (__GLIBCPP__): Bump from value of last release.
313         * include/bits/concept_check.h: Default to off, edit comments.
314         * src/stl-inst.cc: Use _GLIBCPP_CONCEPT_CHECKS.
315         * src/Makefile.am (AM_CXXFLAGS): Remove _GLIBCPP_NO_CONCEPT_CHECKS. 
316         * src/Makefile.in: Regenerate.
317         
318 2001-04-14  Martin Reinecke <martin@MPA-Garching.MPG.DE>
320         * include/bits/boost_concept_check.h(_Mutable_ContainerConcept):
321         Properly uglify member.
323 2001-04-13  Phil Edwards  <pme@sources.redhat.com>
325         * include/bits/stl_algobase.h (equal):  Use EqualOpConcept instead
326         of EqualityCo
327         mparableConcept.
329 2001-04-13  Phil Edwards  <pme@sources.redhat.com>
331         * include/bits/boost_concept_check.h:  Uglify, fork from Boost.
332         * include/bits/concept_check.h:  Uglify.
333         * include/bits/stl_algo.h:  Likewise.
334         * include/bits/stl_algobase.h:  Likewise.
335         * include/bits/stl_deque.h:  Likewise.
336         * include/bits/stl_heap.h:  Likewise.
337         * include/bits/stl_iterator_base_funcs.h:  Likewise.
338         * include/bits/stl_list.h:  Likewise.
339         * include/bits/stl_map.h:  Likewise.
340         * include/bits/stl_multimap.h:  Likewise.
341         * include/bits/stl_multiset.h:  Likewise.
342         * include/bits/stl_numeric.h:  Likewise.
343         * include/bits/stl_queue.h:  Likewise.
344         * include/bits/stl_set.h:  Likewise.
345         * include/bits/stl_stack.h:  Likewise.
346         * include/bits/stl_vector.h:  Likewise.
347         * include/ext/hash_map:  Likewise.
348         * include/ext/hash_set:  Likewise.
349         * include/ext/slist:  Likewise.
351 2001-04-13  Gabriel Dos Reis  <gdr@codesourcery.com>
353         * testsuite/23_containers/set_operators.cc: Just try to compile.
354         Mark as XFAIL.   
355         * testsuite/23_containers/map_operators.cc: Same.
357 2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
359         * testsuite/lib/libstdc++.exp (libstdc++-dg-test): Prepend "./" to
360         output_file.
361         (dg-test): Revert rth's change.
363 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
365         * libsupc++/eh_alloc.cc (__cxa_allocate_exception): Don't
366         terminate holding the mutex. Make sure size fits in EMERGENCY_OBJ_SIZE.
368 2001-04-12  Gabriel Dos Reis  <gdr@codesourcery.com>
370         * testsuite/README: Add DejaGnu specific documentation.
372 2001-04-11  Benjamin Kosnik  <bkoz@redhat.com>
373         
374         * acinclude.m4: AC_CHECK_TOOL for expect.
375         * aclocal.m4: Regenerate.
376         * configure: Regenerate.
377         * testsuite/Makefile.am (RUNTEST): Use substituted.
378         (EXPECT): Same.
380         * configure.in: Remove xcompiling substitution.
381         * tests_flags.in (CROSS_LIB_PATH): Remove.
382         (xcompiling): Remove.
383         (CXX): Use substituted CXX.
384         
385 2001-04-11  Richard Henderson  <rth@redhat.com>
387         * testsuite/lib/libstdc++.exp: Specify path for output_file.
389 2001-04-08  Gabriel Dos Reis  <gdr@codesourcery.com>
391         * include/bits/std_valarray.h(valarray<>::operator[]): Make
392         inline. 
394 2001-04-06  Gabriel Dos Reis  <gdr@codesourcery.com>
395   
396         * testsuite/25_algorithms/equal.cc: New test.
398 2001-04-06  Joe Buck  <jbuck@welsh-buck.org>
400         * stl_algobase.h (std::equal): avoid use of possibly-undefined
401         operator != (one line patch).
403 2001-04-06   Benjamin Kosnik  <bkoz@redhat.com>
405         * include/backward/backward_warning.h: Re-enable.
407 2001-04-06  Benjamin Kosnik  <bkoz@redhat.com>
408             Alexandre Oliva  <aoliva@redhat.com>
409         
410         * tests_flags.in (CROSS_LIB_PATH): Add as -B flag.
412 2001-04-06  Gabriel Dos Reis  <gdr@codesourcery.com>
414         * include/c_std/bits/std_cmath.h: Get rid of C99 math macros.
415         * testsuite/26_numerics/c99_macros.cc: Add test.
417 2001-04-06  Phil Edwards  <pme@sources.redhat.com>
419         * docs/html/faq/index.html:  Update for 2.92, grab from RELEASE-NOTES.
420         * docs/html/faq/index.txt:  Regenerated.
422 2001-04-06  Benjamin Kosnik  <bkoz@redhat.com>
424         * include/backward/backward_warning.h: Temporarily disable until
425         g++ testsuite changes go in.
426         * tests_flags.in (CROSS_LIB_PATH): Add.
428 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
430         Warn when using backward headers.
431         * include/backward/algo.h: Include warning file.        
432         * include/backward/vector.h: Same.
433         * include/backward/tree.h: Same.
434         * include/backward/tempbuf.h: Same.
435         * include/backward/strstream: Same.
436         * include/backward/streambuf.h: Same.
437         * include/backward/stream.h: Same.
438         * include/backward/stack.h: Same.
439         * include/backward/slist.h: Same.
440         * include/backward/set.h: Same.
441         * include/backward/rope.h: 
442         * include/backward/queue.h: Same.
443         * include/backward/pair.h: Same.
444         * include/backward/ostream.h: Same.
445         * include/backward/new.h: Same.
446         * include/backward/multiset.h: Same.
447         * include/backward/multimap.h: Same.
448         * include/backward/map.h: Same.
449         * include/backward/list.h: Same.
450         * include/backward/iterator.h: Same.
451         * include/backward/istream.h: Same.
452         * include/backward/iostream.h: 
453         * include/backward/iomanip.h: 
454         * include/backward/heap.h: Same.
455         * include/backward/hashtable.h: 
456         * include/backward/hash_set.h: 
457         * include/backward/hash_map.h: 
458         * include/backward/function.h: 
459         * include/backward/fstream.h: 
460         * include/backward/deque.h: 
461         * include/backward/defalloc.h: Same.
462         * include/backward/complex.h: Same.
463         * include/backward/bvector.h: 
464         * include/backward/alloc.h: 
465         * include/backward/algobase.h: Same.
467         * include/backward/backward_warning.h: New file.
468         * src/Makefile.am (backward_headers): Add backward_warning.h
469         * src/Makefile.in: Regenerate.
471 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
473         * src/Makefile.am (myinstalldirs): Make sure backward directory is
474         created.
475         (myinstallheaders): Install backward headers in backward directory.
476         * src/Makefile.in: Regenerate.
477         
478 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
480         Prepare for libstdc++-2.92.
481         * docs/html/17_intro/RELEASE-NOTES (New): Update.
482         * docs/html/configopts.html: Fix formatting.
483         * README (file): Updates.
484         * include/bits/c++config (__GLIBCPP__): Update.
486 2001-04-05  Phil Edwards  <pme@sources.redhat.com>
488         * docs/doxygen/run_doxygen:  Check for the existence of Doxygen.
490 2001-04-04  Phil Edwards  <pme@sources.redhat.com>
492         * docs/doxygen/user.cfg.in:  Extract all non-private members;
493           reduce confusing documentation output.
495 2001-04-04  Geoffrey Keating  <geoffk@redhat.com>
497         * include/backward/fstream.h: Add missing semicolons.
499 2001-04-03  Benjamin Kosnik  <bkoz@redhat.com>
501         * include/bits/fstream.tcc: Add bool parameter to filebuf ctor.
502         * include/bits/ios_base.h(ios_base::Init): Remove _M_cout, _M_cin,
503         _M_cerr, _M_wcout, _M_wcin, _M_wcerr.
504         (ios_base::Init::_S_ios_create): New.
505         (ios_base::Init::_S_ios_destroy): New.  
506         * include/bits/std_fstream.h: Change ctor args.
507         * src/ios.cc (ios_base::Init::Init): Use _S_ios_create.
508         (ios_base::Init::~Init): Use _S_ios_destroy.
509         (ios_base::sync_with_stdio): Use new members.
510         * testsuite/27_io/filebuf_members.cc: Fix calling conventions for
511         filebuf ctor.
513 2001-04-03  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
515         * include/backward/fstream.h:  Expose streampos to global
516           namespace.
517         
518 2001-04-03  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
520         * include/bits/stl_iterator_base_types.h: Fix typo
522 2001-04-03  Andreas Schwab  <schwab@suse.de>
524         * include/backward/fstream.h: Define filebuf and wfilebuf.
526 2001-04-02  Phil Edwards  <pme@sources.redhat.com>
528         New concept checking implementation.
529         * docs/html/19_diagnostics/howto.html:  Document.
530         * docs/html/17_intro/concept_check.diff:  New file, for reference.
531         * include/bits/boost_concept_check.h:  New file from Boost.
532         * include/bits/c++config:  Update comments.
534         * include/bits/concept_check.h:  New file.
535         * include/bits/concept_checks.h:  Removed.
536         * include/bits/container_concepts.h:  Removed.
537         * include/bits/sequence_concepts.h:  Removed.
538         * include/bits/stl_iterator_base.h:  Removed; split into...
539         * include/bits/stl_iterator_base_funcs.h:  ...this new file...
540         * include/bits/stl_iterator_base_types.h:  ...and this new file.
542         * include/bits/sbuf_iter.h:  Update to use new implementation.
543         * include/bits/std_iterator.h:  Likewise.
544         * include/bits/std_memory.h:  Likewise.
545         * include/bits/stl_algo.h:  Likewise.
546         * include/bits/stl_algobase.h:  Likewise.
547         * include/bits/stl_construct.h:  Likewise.
548         * include/bits/stl_deque.h:  Likewise.
549         * include/bits/stl_heap.h:  Likewise.
550         * include/bits/stl_list.h:  Likewise.
551         * include/bits/stl_map.h:  Likewise.
552         * include/bits/stl_multimap.h:  Likewise.
553         * include/bits/stl_multiset.h:  Likewise.
554         * include/bits/stl_numeric.h:  Likewise.
555         * include/bits/stl_queue.h:  Likewise.
556         * include/bits/stl_set.h:  Likewise.
557         * include/bits/stl_stack.h:  Likewise.
558         * include/bits/stl_uninitialized.h:  Likewise.
559         * include/bits/stl_vector.h:  Likewise.
560         * include/ext/hash_map:  Likewise.
561         * include/ext/hash_set:  Likewise.
562         * include/ext/slist:  Likewise.
563         * include/ext/stl_hashtable.h:  Likewise.
565         * src/Makefile.am (base_headers):  Update list of headers.
566         * Makefile.in:  Regenerated.
567         * src/Makefile.in:  Regenerated.
568         * libio/Makefile.in:  Regenerated.
569         * libmath/Makefile.in:  Regenerated.
570         * libsupc++/Makefile.in:  Regenerated.
571         * testsuite/Makefile.in:  Regenerated.
573         * docs/html/install.html:  Update contact information.
574         * docs/html/17_intro/howto.html:  Ditto.
575         * docs/html/18_support/howto.html:  Ditto.
576         * docs/html/20_util/howto.html:  Ditto.
577         * docs/html/21_strings/howto.html:  Ditto.
578         * docs/html/22_locale/howto.html:  Ditto.
579         * docs/html/23_containers/howto.html:  Ditto.
580         * docs/html/24_iterators/howto.html:  Ditto.
581         * docs/html/25_algorithms/howto.html:  Ditto.
582         * docs/html/26_numerics/howto.html:  Ditto.
583         * docs/html/27_io/howto.html:  Ditto.
584         * docs/html/faq/index.html:  Ditto, plus info on new checking code.
585         * docs/html/ext/howto.html:  Ditto, plus info on new checking code.
586         * docs/html/faq/index.txt:  Regenerated.
588 2001-04-02  Zack Weinberg  <zackw@stanford.edu>
590         * testsuite/lib/libstdc++.exp (dg-test): Annotate result
591         messages with $which_library as well as $tool_flags and
592         ${dg-extra-tool-flags}.  Factor out annotation text into
593         a single variable.
595 2001-04-02  Stephen M. Webb  <stephen@bregmasoft.com>
597         * include/c_std/bits/std_cstring.h: Fix for const-correctness.
598         * include/c_std/bits/std_cwchar.h: Same.
599         * testsuite/21_strings/c_strings.cc: Add.
601 2001-04-01  Benjamin Kosnik  <bkoz@codesourcery.com>
603         * docs/html/configopts.html: Add --enable-sjlj-exceptions docs.
605 2001-04-01  Zack Weinberg  <zackw@stanford.edu>
607         * tests_flags.in: Use test a = b, not test a == b which is not
608         portable.
610 2001-03-31  Benjamin Kosnik  <bkoz@redhat.com>
612         * configure.target: Remove duplicate aix entry.
614 2001-03-30  Benjamin Kosnik  <bkoz@redhat.com>
616         * include/ext/stl_bvector.h: Move to...
617         * include/bits/stl_vector.h: ...here.
618         * include/ext/bvector: Move to...
619         * include/backward/bvector.h: ...here.
620         * include/bits/std_vector.h: Change stl_bvector include.
621         * include/bits/std_queue.h: Remove bvector include.
622         * include/ext/tree: Insert using rb_tree, move to...
623         * include/backward/tree.h: ...here.
624         * include/backward/hash_map.h: Include ext/hash_map.
625         * include/backward/hash_set.h: Include ext/hash_set.
626         * include/backward/queue.h: New file.
627         * include/backward/stack.h: Edit.
628         * include/backward/algo.h: Same.
629         * include/backward/algobase.h: Same.
630         * include/backward/alloc.h: Same.
631         * include/backward/function.h: Same.
632         * include/backward/iomanip.h: Same.
633         * include/backward/istream.h: Same.
634         * include/backward/iterator.h: Same.
635         * include/backward/list.h: Same.
636         * include/backward/map.h: Same.
637         * include/backward/multimap.h: Same.
638         * include/backward/multiset.h: Same.
639         * include/backward/ostream.h: Same.
640         * include/backward/pair.h: Same
641         * include/backward/rope.h: Same.
642         * include/backward/set.h: Same.
643         * include/backward/stream.h: Same.
644         * include/backward/strstream.h: Same.
645         * include/backward/tempbuf.h: Same.
646         * src/Makefile.am (ext_headers): Edit.
647         * src/Makefile.in: Regenerate.
648         * testsuite/ext/headers.cc (main): Fix.
649         * mkcheck.in: Fix.
651 2001-03-30  Phil Edwards  <pme@sources.redhat.com>
653         * tests_flags.in (LIBS):  Pass correct path for installed testing.
655 2001-03-28  Benjamin Kosnik  <bkoz@redhat.com>
657         * mkcheck.in (LIBTOOL): Don't construct -B argument here...
658         * tests_flags.in (CXX): Construct here.
659         (static_fail): Don't remove compile.out. Format with spaces.
660         (INCLUDES): Deal with xcompiling.
661         * configure.in (xcompiling): Substitute.
662         * testsuite/Makefile.am: Snake libjava configury.
663         * testsuite/Makefile.in: Regenerate.
664         * testsuite/23_containers/map_operators.cc: Tweaks.
665         * testsuite/23_containers/set_operators.cc: Tweaks.
667 2001-03-28  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
669         Enable dejagnu testing framework.
670         * configure.in: Generate testsuite/Makefile.
671         * configure: Regenerate.
672         * Makefile.am (check-install): Change rule from this...
673         (check-script-install): ...to this.
674         (check): Change rule from this...
675         (check-script):...to this.
676         * Makefile.in: Regenerate.
678 2001-03-28  Alexandre Oliva  <aoliva@redhat.com>
680         * libsupc++/Makefile.am (CXXLINK): Add --tag disable-shared after
681         --tag CXX.
682         (LIBTOOL): Let automake take care of its definition.
683         * libsupc++/Makefile.in: Rebuilt.
685 2001-03-28  Richard Henderson  <rth@redhat.com>
687         IA-64 ABI Exception Handling:
688         * acinclude.m4 (GLIBCPP_ENABLE_SJLJ_EXCEPTIONS): New.
689         * configure.in: Use it.
690         * Makefile.in, aclocal.m4, config.h.in, configure: Regenerate.
691         * libsupc++/Makefile.am (sources): Update files list.
692         * libsupc++/Makefile.in: Regenerate.
693         * libsupc++/eh_alloc.cc, libsupc++/eh_aux_runtime.cc: New files.
694         * libsupc++/eh_catch.cc, libsupc++/eh_exception.cc: New files.
695         * libsupc++/eh_globals.cc, libsupc++/eh_personality.cc: New files.
696         * libsupc++/eh_terminate.cc, libsupc++/eh_throw.cc: New files.
697         * libsupc++/exception_support.cc: Remove.
698         * libsupc++/exception_support.h: Remove.
699         * libsupc++/pure.cc: Use std::terminate.
700         * libsupc++/tinfo2.cc (__throw_type_match_rtti_2): Remove.
701         (__is_pointer): Remove.
702         * libsupc++/unwind-cxx.h: New file.
703         * libsupc++/vec.cc (uncatch_exception): Update for new abi.
705 2001-03-27  Alexandre Oliva  <aoliva@redhat.com>
707         * libsupc++/Makefile.am (CXXLINK): Use CXX again, and choose
708         CXX tag explicitly.
709         * src/Makefile.am (CXXLINK): Likewise.
710         * libsupc++/Makefile.in, src/Makefile.in: Rebuilt.
712 2001-03-27  Benjamin Kosnik  <bkoz@redhat.com>
714         * include/bits/c++config (_STL_USE_CONCEPT_CHECKS): Disable by default.
716 2001-03-26  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
718         * libstdc++-v3/tests_flags.in: Change the order of libstdc++
719           and libc
721 2001-03-26  Benjamin Kosnik  <bkoz@redhat.com>
723         * include/bits/basic_file.h (get_fileno): Remove.
724         (_M_fileno): Remove.
725         (_M_cfile_created): Add.
726         (basic_file::basic_file(__c_file_type*, openmode): Add.
727         (basic_file::basic_file(int, const char*, openmode): Remove.
728         * include/bits/fstream.tcc (basic_fstream::basic_filebuf(int __fd,
729         const char*, ios_base::openmode): Don't allocate
730         internal buffers. Turn off internal buffers.
731         (basic_filebuf::overflow): Remove test for null buffer.
732         (basic_filebuf::_M_really_overflow): Same. Allow unbuffered use.
733         * include/bits/streambuf.cc: Tweak.
734         * include/bits/std_ostream.h: Tweak.
735         * config/basic_file_libio.h: Same.
736         * config/basic_file_stdio.h: Same.
737         * src/ios.cc (ios_base::Init::Init()): Unbuffer stdout by default.
738         * testsuite/27_io/filebuf_members.cc: Tweaks.
739         * testsuite/27_io/ios_base_members_static.cc: Tweaks.
741 2001-03-24  Phil Edwards  <pme@sources.redhat.com>
743         * Makefile.am:  New targets, doxygen and doxygen-maint.
744         * Makefile.in:  Regenerated.
745         * docs/doxygen/run_doxygen:  Finally implemented.
746         * docs/doxygen/maint.cfg.in:  New file.
747         * docs/doxygen/user.cfg.in:  New file.
749 2001-03-24  Phil Edwards  <pme@sources.redhat.com>
751         * acinclude.m4 (GLIBCPP_CHECK_COMPILER_FEATURES):  Update comment.
752         * src/Makefile.am:  Replace leading spaces with tabs on continuation
753         lines.
754         * aclocal.m4:  Regenerated.
755         * configure:  Ditto.
756         * Makefile.in:  Ditto.
757         * src/Makefile.in:  Ditto.
758         * libio/Makefile.in:  Ditto.
759         * libmath/Makefile.in:  Ditto.
760         * libsupc++/Makefile.in:  Ditto.
762 2001-03-24  Phil Edwards  <pme@sources.redhat.com>
764         * docs/html/19_diagnostics/howto.html:  HTML fixup.  Describe
765         concept-checking code and current status of same.
766         * docs/html/ext/howto.html:  Ditto.
767         * docs/html/faq/index.html:  Ditto.
768         * docs/html/faq/index.txt:  Regenerated.
770 2001-03-24  Phil Edwards  <pme@sources.redhat.com>
772         * include/bits/std_bitset.h:  Include ostream and istream headers
773         instead of iostream.
775 2001-03-22  Greg Bumgardner <bumgard@roguewave.com>
777         * include/bits/ostream.tcc: Use __builtin_alloca.
779 2001-03-22  Benjamin Kosnik  <bkoz@redhat.com>
781         * src/misc-inst.cc (__sink_unused_warning): Move to...
782         * src/locale-inst.cc (__sink_unused_warning): Move to...
783         * src/stl-inst.cc: Here.
784         * include/bits/c++config (_STL_NO_CONCEPT_CHECKS): Add define,
785         commented it out.
787 2001-03-21  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
789         * intclude/bits/basic_file.h: Fix typos in comments.
791 2001-03-20  Richard Henderson  <rth@redhat.com>
793         * src/gen-num-limits.cc: Instantiate for wchar_t.
794         * config/os/aix/bits/ctype_base.h (mask): Use unsigned int.
796 2001-03-20  Jason Merrill  <jason@redhat.com>
798         * libsupc++/vec.cc (__cxa_vec_cleanup): New fn.
799         (__cxa_vec_ctor, __cxa_vec_cctor, __cxa_vec_dtor): Call it.
800         * libsupc++/cxxabi.h: Declare it.
802 2001-03-16  Alexandre Oliva  <aoliva@redhat.com>
804         * src/gen-num-limits.cc (signal_adapter): Overloaded to match
805         signal_func with an unspecified argument list.
807 2001-03-15  Benjamin Kosnik  <bkoz@redhat.com>
809         * tests_flags.in (CXXFLAGS): Link libstdc++ before libsupc++.
811 2001-03-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
813         * include/bits/basic_string.tcc (operator+): Fix thinko.
815 2001-03-14  Benjamin Kosnik  <bkoz@redhat.com>
817         libstdc++/2020
818         * include/bits/std_streambuf.h: Remove cached locale facets.
819         (basic_streambuf::_M_buf_fctype): Remove.
820         (basic_streambuf::~basic_streambuf): Remove here.
821         (basic_streambuf::basic_streambuf): Same.
822         (basic_streambuf::imbue): Same.
823         * include/bits/fstream.tcc (filebuf::imbue): Remove _M_buf_fctype.
824         * include/bits/std_fstream.h (basic_filebuf::_M_fcvt): Remove.
825         (basic_filebuf::~basic_filebuf()): Remove here.
826         * include/bits/fstream.tcc (basic_filebuf::basic_filebuf): Same.
827         (basic_filebuf::imbue): Same.
828         * include/bits/localefwd.h (_Count_ones): Remove.
829         (locale::_S_num_categories): Just use 6, since this doesn't
830         actually change, ever.
831         * include/bits/locale_facets.tcc (has_facet): Simplify.
832         (use_facet): Same.
833         * testsuite/27_io/filebuf.cc (test06): Add tests.
835 2001-03-13  Steve Ellcey  <sje@cup.hp.com>
837         * libstdc++-v3/config/os/hpux/bits/ctype_base.h: Make ctype masks
838         match HP-UX ctype.h header file.
840 2001-03-13  Andris Pavenis <pavenis@latnet.lv>
842         * config/djgpp/bits/ctype_noninline.h: Fix typo and remove
843         duplicate definitions of __dj_ctype_*
845 2001-03-13  Benjamin Kosnik  <bkoz@redhat.com>
847         * libsupc++/new: Remove pragma interface.
848         * libsupc++/typeinfo: Same.
849         * libsupc++/exception: Same.
850         * libsupc++/new_handler.cc: Remove pragma implementation.
851         (bad_alloc::~bad_alloc()): Add.
852         * libsupc++/exception_support.cc: Same.
853         (exception::~exception): Add.
854         (bad_exception::~bad_exception): Add.
855         * libsupc++/tinfo.cc: Same.
856         (bad_cast::~bad_cast): Add.
857         (bad_typeid::~bad_typeid): Add.
859 2001-03-13  Phil Edwards  <pme@sources.redhat.com>
861         * mkcheck.in:  Fix IFS regression for non-bash-2.01 hosts.
863 2001-03-12  Felix Lee  <flee@redhat.com>
865         * mkcheck.in: workaround for bash 2.01 IFS bug.
867 2001-03-12  Benjamin Kosnik  <bkoz@redhat.com>
869         Fixups for -fno-for-scope
870         * include/bits/locale_facets.tcc (__match_parallel): Fixup.
871         * src/valarray-inst.cc (__gslice_to_index): Same.
873 2001-03-12  Rodney Brown  <RodneyBrown@mynd.com>
875         * src/gen-num-limits.cc (traps) [SPECIALIZE_TRAPPING]: Add fflush
876         prior to trapping signal (UnixWare 7 workaround).
878 2001-03-12  Craig Rodrigues  <rodrigc@mediaone.net>
880         * include/backward/hashtable.h: Same.
881         * include/backward/rope.h: Fix include.
883 2001-03-12  Benjamin Kosnik  <bkoz@redhat.com>
885         * include/backward/vector.h: Include std_vector.h.
887         * include/bits/istream.tcc (basic_istream<_CharT, _Traits>&
888         operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s)):
889         Fix typo.
891 2001-03-11  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
893         * include/ext/stl_hashtable.h: Change type of __n to size_t
894         * include/backward/bvector.h: Include <ext/stl_bvector.h>
896 2001-03-09  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
898         * include/bits/istream.tcc ( basic_istream<_CharT, _Traits>&
899         operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s)):
900         Use streamsize, not int_type.
902 2001-03-08  Benjamin Kosnik  <bkoz@redhat.com>
904         * testsuite/27_io/streambuf.cc (test06): New test, disabled at the
905         moment.
907 2001-03-08  Andreas Schwab  <schwab@suse.de>
909         * acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Fix syntax in test
910         command.
911         * aclocal.m4, configure: Regenerated.
913 2001-03-07  Benjamin Kosnik  <bkoz@redhat.com>
915         * include/bits/std_iosfwd.h: Remove string forward decls here.
916         * include/bits/stringfwd.h: Add forward decls for char_traits
917         specializations.
918         * config/c_io_libio.h (wstreamoff): Delete.
919         * config/c_io_stdio.h (wstreamoff): Same.
920         * include/bits/char_traits.h: Use streamoff not wstreamoff for
921         char_traits<wchar_t>::off_type.
922         Remove duplicate typedefs.
923         * include/bits/fpos.h: Define streampos/wstreampos here.
924         * testsuite/27_io/istream_seeks.cc (test04): Explicitly cast int
925         values to off_type.
926         (test05): Same.
927         Changeup output files.
928         * testsuite/27_io/istream_unformatted.cc: Change output files.
929         * testsuite/27_io/istream_seeks-1.txt: Add.
930         * testsuite/27_io/istream_seeks-2.tst: Add.
931         * testsuite/27_io/istream_seeks-1.tst: Add.
932         * testsuite/27_io/istream_unformatted-2.tst: Delete.
933         * testsuite/27_io/istream_unformatted-3.tst: Delete.
934         * testsuite/27_io/istream_unformatted-3.txt: Delete.
936 2001-03-07  Alexandre Oliva  <aoliva@redhat.com>
938         Add Irix 5.2, 6.3 support.
939         * config/os/irix/bits: Renamed to...
940         * config/os/irix/irix6.5/bits: this.
941         * config/os/irix/irix5.2/bits: New, copied from irix6.5/bits.
942         * config/os/irix/irix5.2/bits/ctype_base.h: Use _U, _L, _N,
943         _X, _S, _P, _C and _B instead of IRIX-6.5 _IS* macros.
944         * config/os/irix/irix5.2/bits/ctype_noninline.h
945         (ctype<char>::ctype): Initialize _M_table with __ctype.
946         * configure.target: Adjust.
948 2001-03-06  Benjamin Kosnik  <bkoz@redhat.com>
950         libstdc++/2181
951         * include/bits/istream.tcc (basic_istream<_CharT, _Traits>::
952         operator>>(__istream_type& (*__pf)(__istream_type&)): Don't use
953         sentry.
954         (basic_istream<_CharT, _Traits>:: operator>>(__ios_type&
955         (*__pf)(__ios_type&)): Same.
956         (basic_istream<_CharT, _Traits>:: operator>>(ios_base&
957         (*__pf)(ios_base&))): Same.
958         * testsuite/27_io/istream_extractor_other.cc: Add tests.
959         * testsuite/27_io/istream_manip.cc (test01): Fix.
961 2001-03-06  Nathan Myers  <ncm@cantrip.org>
962             Benjamin Kosnik  <bkoz@redhat.com>
964         * include/c_std/bits/std_cerrno.h: Don't define errno in std::.
965         * testsuite/17_intro/header_cerrno.cc (test01): New file.
966         * testsuite/17_intro/header_cassert.cc (test01): New file.
967         * testsuite/17_intro/header_cstddef.cc (test01): New file.
968         * testsuite/17_intro/header_csetjmp.cc (test01): New file.
969         * testsuite/17_intro/header_cstdarg.cc (test01): New file.
971 2001-03-05  scott snyder  <snyder@fnal.gov>
973         libstdc++/2190
974         * include/c_std/bits/std_cmath.h: Move abs(long), div(long,long)
975         from here...
976         * include/c_std/bits/std_cstdlib.h: ... to here.
977         * testsuite/17_intro/header_cstdlib.cc: Add test.
979 2001-03-05  Stephen M. Webb  <stephen.webb@cybersafe.com>
981         * libsupc++/vec.cc (__cxxa_vec_new2): Qualify size_t.
983 2001-03-05  Laurynas Biveinis  <lauras@softhome.net>
985         * config/os/djgpp/ctype_base.h (ctype_base): fix __to_type
986         definition. Replace enum with static const variables.
988         * config/os/djgpp/ctype_inline.h (ctype<char>::is): remove
989         throw specification, fix typos, use <static_cast>.
990         (ctype<char>::scan_is): remove throw specification.
991         (ctype<char>::scan_not): likewise.
993         * config/os/djgpp/ctype_noninline.h (ctype<char>::ctype): fix typo.
994         (ctype<char>::do_toupper(char)): use <static_cast>.
995         (ctype<char>::do_toupper(char *, const char *)): likewise.
996         (ctype<char>::do_tolower(char)): likewise.
997         (ctype<char>::do_tolower(char *, const char *)): likewise.
999 2001-03-04  Phil Edwards  <pme@sources.redhat.com>
1001         http://gcc.gnu.org/ml/libstdc++/2001-03/msg00015.html
1002         * include/backward/algo.h:  Use std not __STD.  Remove unneeded
1003         macros and "never happens" code.  Adjust to C++STYLE guidelines.
1004         * include/backward/algobase.h:  Likewise.
1005         * include/backward/alloc.h:  Likewise.
1006         * include/backward/bvector.h:  Likewise.
1007         * include/backward/deque.h:  Likewise.
1008         * include/backward/function.h:  Likewise.
1009         * include/backward/hash_map.h:  Likewise.
1010         * include/backward/hash_set.h:  Likewise.
1011         * include/backward/hashtable.h:  Likewise.
1012         * include/backward/heap.h:  Likewise.
1013         * include/backward/iterator.h:  Likewise.
1014         * include/backward/list.h:  Likewise.
1015         * include/backward/map.h:  Likewise.
1016         * include/backward/multimap.h:  Likewise.
1017         * include/backward/multiset.h:  Likewise.
1018         * include/backward/pair.h:  Likewise.
1019         * include/backward/rope.h:  Likewise.
1020         * include/backward/set.h:  Likewise.
1021         * include/backward/slist.h:  Likewise.
1022         * include/backward/stack.h:  Likewise.
1023         * include/backward/strstream:  Likewise.
1024         * include/backward/tempbuf.h:  Likewise.
1025         * include/backward/tree.h:  Likewise.
1026         * include/backward/vector.h:  Likewise.
1027         * include/bits/basic_ios.h:  Likewise.
1028         * include/bits/basic_ios.tcc:  Likewise.
1029         * include/bits/basic_string.h:  Likewise.
1030         * include/bits/c++config:  Likewise.
1031         * include/bits/concept_checks.h:  Likewise.
1032         * include/bits/fpos.h:  Likewise.
1033         * include/bits/fstream.tcc:  Likewise.
1034         * include/bits/functexcept.h:  Likewise.
1035         * include/bits/ios_base.h:  Likewise.
1036         * include/bits/istream.tcc:  Likewise.
1037         * include/bits/mask_array.h:  Likewise.
1038         * include/bits/ostream.tcc:  Likewise.
1039         * include/bits/pthread_allocimpl.h:  Likewise.
1040         * include/bits/sbuf_iter.h:  Likewise.
1041         * include/bits/slice.h:  Likewise.
1042         * include/bits/slice_array.h:  Likewise.
1043         * include/bits/sstream.tcc:  Likewise.
1044         * include/bits/std_bitset.h:  Likewise.
1045         * include/bits/std_fstream.h:  Likewise.
1046         * include/bits/std_iomanip.h:  Likewise.
1047         * include/bits/std_ios.h:  Likewise.
1048         * include/bits/std_istream.h:  Likewise.
1049         * include/bits/std_iterator.h:  Likewise.
1050         * include/bits/std_memory.h:  Likewise.
1051         * include/bits/std_ostream.h:  Likewise.
1052         * include/bits/std_sstream.h:  Likewise.
1053         * include/bits/std_streambuf.h:  Likewise.
1054         * include/bits/std_string.h:  Likewise.
1055         * include/bits/std_valarray.h:  Likewise.
1056         * include/bits/stl_algo.h:  Likewise.
1057         * include/bits/stl_algobase.h:  Likewise.
1058         * include/bits/stl_alloc.h:  Likewise.
1059         * include/bits/stl_construct.h:  Likewise.
1060         * include/bits/stl_deque.h:  Likewise.
1061         * include/bits/stl_function.h:  Likewise.
1062         * include/bits/stl_heap.h:  Likewise.
1063         * include/bits/stl_iterator.h:  Likewise.
1064         * include/bits/stl_iterator_base.h:  Likewise.
1065         * include/bits/stl_list.h:  Likewise.
1066         * include/bits/stl_map.h:  Likewise.
1067         * include/bits/stl_multimap.h:  Likewise.
1068         * include/bits/stl_multiset.h:  Likewise.
1069         * include/bits/stl_numeric.h:  Likewise.
1070         * include/bits/stl_pair.h:  Likewise.
1071         * include/bits/stl_pthread_alloc.h:  Likewise.
1072         * include/bits/stl_queue.h:  Likewise.
1073         * include/bits/stl_raw_storage_iter.h:  Likewise.
1074         * include/bits/stl_relops.h:  Likewise.
1075         * include/bits/stl_set.h:  Likewise.
1076         * include/bits/stl_stack.h:  Likewise.
1077         * include/bits/stl_tempbuf.h:  Likewise.
1078         * include/bits/stl_threads.h:  Likewise.
1079         * include/bits/stl_tree.h:  Likewise.
1080         * include/bits/stl_uninitialized.h:  Likewise.
1081         * include/bits/stl_vector.h:  Likewise.
1082         * include/bits/streambuf.tcc:  Likewise.
1083         * include/bits/type_traits.h:  Likewise.
1084         * include/bits/valarray_meta.h:  Likewise.
1085         * include/ext/bvector:  Likewise.
1086         * include/ext/hash_map:  Likewise.
1087         * include/ext/hash_set:  Likewise.
1088         * include/ext/ropeimpl.h:  Likewise.
1089         * include/ext/slist:  Likewise.
1090         * include/ext/stl_bvector.h:  Likewise.
1091         * include/ext/stl_hash_fun.h:  Likewise.
1092         * include/ext/stl_hashtable.h:  Likewise.
1093         * include/ext/stl_rope.h:  Likewise.
1094         * src/complex_io.cc:  Likewise.
1095         * src/ios.cc:  Likewise.
1096         * src/locale-inst.cc:  Likewise.
1097         * src/locale.cc:  Likewise.
1098         * src/localename.cc:  Likewise.
1099         * src/misc-inst.cc:  Likewise.
1100         * src/stdexcept.cc:  Likewise.
1101         * src/stl-inst.cc:  Likewise.
1102         * src/strstream.cc:  Likewise.
1103         * src/valarray-inst.cc:  Likewise.
1105 2001-03-03  Benjamin Kosnik  <bkoz@redhat.com>
1107         * src/misc-inst.cc (__copy_streambufs): Fix typo for alpha.
1109 2001-03-02  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
1111         * include/bits/istream.tcc: change type of __extracted to __size_type
1113 2001-03-02  Benjamin Kosnik  <bkoz@redhat.com>
1115         * src/wstring-inst.cc: New file.
1116         * src/Makefile.am (EXTRA_LTLIBRARIES): Remove.
1117         (libinst_wstring_la_SOURCES): Remove.
1118         (libstdc___la_LIBADD): Remove libinst_wstring_la.
1119         (sources): Add wstring-inst.cc
1120         * acinclude.m4 (GLIBCPP_CHECK_WCHAR_T_SUPPORT): Remove
1121         libinst_wstring_la.
1123 2001-03-02  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
1125         * src/locale.cc: initialise __ret with zero
1126         * src/strstream.cc:cast gptr to int_type
1128 2001-03-01  Phil Edwards  <pme@sources.redhat.com>
1130         * docs/html/faq/index.html:  Update broken links.
1131         * docs/html/faq/index.txt:  Regenerated.
1133 2001-02-28  Benjamin Kosnik  <bkoz@redhat.com>
1135         libstdc++/2064
1136         * configure.target: Change irix* to irix6.5* in target_os table.
1138 2001-02-28  Benjamin Kosnik  <bkoz@redhat.com>
1140         libstdc++/2103
1141         * include/bits/c++config (__GLIBCPP__): Bump number in
1142         anticipation of 2.92.
1144         * include/bits/codecvt.h: Fix typo.
1145         * include/bits/basic_file.h (__basic_file): Don't use _M_wfile for
1146         stdio model.
1147         * acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Enable wchar_t
1148         instantiations for stdio model.
1150 2001-02-28  Phil Edwards  <pme@sources.redhat.com>
1152         * acinclude.m4 (GLIBCPP_CONFIGURE):  Remove GLIBCPP_CFLAGS
1153           and GLIBCPP_CXXFLAGS as unused variables.
1154         * configure.host:  Likewise.
1155         * configure.target:  Likewise.
1156         * aclocal.m4:  Regenerated.
1157         * configure:  Regenerated.
1158         * Makefile.in:  Regenerated.
1159         * libio/Makefile.in:  Regenerated.
1160         * libmath/Makefile.in:  Regenerated.
1161         * libsupc++/Makefile.in:  Regenerated.
1162         * src/Makefile.in:  Regenerated.
1164 2001-02-27  Benjamin Kosnik  <bkoz@redhat.com>
1166         libstdc++/1886
1167         * include/bits/basic_file.h: Include basic_file_model.h.
1168         * config/c_io_libio.cc: Move to...
1169         * config/basic_file_libio.cc: Here.
1170         * config/basic_file_libio.h: New file.
1171         * config/c_io_stdio.cc: Move to...
1172         * config/basic_file_stdio.cc: Here.
1173         * config/basic_file_stdio.h: New file.
1174         * config/c_io_libio.h: Tweak.
1175         * config/c_io_stdio.h: Tweak.
1176         * src/Makefile.am (build_headers): Add basic_file_model.h.
1177         (sources): Add basic_file.cc, remove c++io.cc.
1178         * src/Makefile.in: Regenerate.
1179         * acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Add support for
1180         basic_file_model.h and basic_file.cc.
1181         * aclocal.m4: Regenerate.
1182         * configure: Regenerate.
1183         * testsuite/27_io/filebuf.cc (test05): Add regression.
1185 2001-02-27  Benjamin Kosnik  <bkoz@redhat.com>
1187         Correct license.
1188         * config/cpu/alpha/bits/atomicity.h: Change.
1189         * config/cpu/arm/bits/atomicit3y.h
1190         * config/cpu/generic/bits/atomicity.h
1191         * config/cpu/i386/bits/atomicity.h
1192         * config/cpu/i486/bits/atomicity.h
1193         * config/cpu/ia64/bits/atomicity.h
1194         * config/cpu/powerpc/bits/atomicity.h
1195         * config/cpu/sparc/sparc32/bits/atomicity.h
1196         * config/cpu/sparc/sparc64/bits/atomicity.h
1197         * config/os/aix/bits/atomicity.h
1198         * config/os/irix/bits/atomicity.h
1200 2001-02-27  Benjamin Kosnik  <bkoz@redhat.com>
1202         * include/bits/std_stdexcept.h (runtime_error): Make string
1203         member non-const.
1204         (logic_error): Same.
1205         * testsuite/19_diagnostics/stdexceptions.cc (test04): Add test.
1206         (test03): Fix.
1208 2001-02-26  Benjamin Kosnik  <bkoz@redhat.com>
1210         libstdc++/1972
1211         libstdc++/2089
1212         * include/bits/std_stdexcept.h (logic_error::logic_error): Use
1213         string object, not reference.
1214         (runtime_error::runtime_error): Same.
1215         * testsuite/19_diagnostics/stdexceptions.cc: New file.
1217 2001-02-26  Phil Edwards  <pme@sources.redhat.com>
1219         * acinclude.m4 (GLIBCPP_CONFIGURE):  Update required compiler version.
1220           (GLIBCPP_CHECK_COMPILER_FEATURES):  Can safely assume new
1221           diagnostics.  Remove WFMT_FLAGS.
1222         * configure.in:  Replace WFMT_FLAGS with diagnostics options.
1223         * libsupc++/Makefile.am:  Likewise.
1224         * src/Makefile.am:  Likewise.
1225         * aclocal.m4:  Regenerated.
1226         * configure:  Regenerated.
1227         * Makefile.in:  Regenerated.
1228         * libio/Makefile.in:  Regenerated.
1229         * libmath/Makefile.in:  Regenerated.
1230         * libsupc++/Makefile.in:  Regenerated.
1231         * src/Makefile.in:  Regenerated.
1233 2001-02-26  Phil Edwards  <pme@sources.redhat.com>
1235         Fixes libstdc++/2079
1236         * include/backward/iomanip.h:  Expose <ios> manipulators to global
1237           namespace.
1238         * include/backward/iostream.h:  Also expose std::ws.
1240 2001-02-25  Greg Freemyer <freemyer@NorcrossGroup.com>
1242         * libmath/mathconf.h (GET_LDOUBLE_MSW64): Fix thinko.
1244 2001-02-23  Benjamin Kosnik  <bkoz@redhat.com>
1246         * include/bits/codecvt.h: Use __builtin_alloca.
1247         * include/bits/ostream.tcc: Same.
1248         * include/bits/fstream.tcc: Same.
1250 2001-02-23  Alexandre Oliva <aoliva@redhat.com>
1252         * mknumeric_limits (CC): Use VAR=${VAR=...} form.
1254 2001-02-23  David Edelsohn <dje@watson.ibm.com>
1256         * mknumeric_limits (CC): Use $BUILD_DIR/../../gcc/xgcc
1258 2001-02-23  Phil Edwards  <pme@sources.redhat.com>
1260         c++/2052
1261         * include/backward/iostream.h:  Expose std::flush in old headers.
1263 2001-02-23  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1265         * mknumeric_limits: Remove special-casing on target.  Use gcc
1266         instead of g++ to build gen-num-limits.cc
1268 2001-02-22  Benjamin Kosnik  <bkoz@redhat.com>
1270         * tests_flags.in (CXXFLAGS): Add -rpath to gcc build dir.
1272         * include/bits/codecvt.h: Use alloca instead of __extension__ for
1273         the time being.
1274         * include/bits/ostream.tcc: Same.
1275         * include/bits/std_ostream.h: Same.
1276         * include/bits/fstream.tcc: Same.
1277         * include/bits/locale_facets.tcc: Add typename.
1278         * include/bits/c++config (_GLIBCPP_FULLY_COMPLIANT_HEADERS): Enable.
1280 2001-02-21  Phil Edwards  <pme@sources.redhat.com>
1282         * tests_flags.in:  Remove -n flag from call to echo.
1284 2001-02-20  Benjamin Kosnik  <bkoz@redhat.com>
1286         * config/c_locale_gnu.h: Add clocale include.
1288 2001-02-20  Phil Edwards  <pme@sources.redhat.com>
1290         * include/bits/stl_config.h:  Remove file.
1291         * src/Makefile.am (base_headers):  Remove from list.
1292         * configure:  Regenerate.
1293         * Makefile.in:  Ditto.
1294         * libio/Makefile.in:  Ditto.
1295         * libmath/Makefile.in:  Ditto.
1296         * libsupc++/Makefile.in:  Ditto.
1297         * src/Makefile.in:  Ditto.
1299         * include/bits/c++config:  Move relevant macros to here.
1300         * include/backward/alloc.h:  Include c++config.h instead.
1301         * include/backward/function.h:  Ditto.
1302         * include/backward/heap.h:  Ditto.
1303         * include/backward/pair.h:  Ditto.
1304         * include/bits/pthread_allocimpl.h:  Ditto.
1305         * include/bits/std_functional.h:  Ditto.
1306         * include/bits/std_iterator.h:  Ditto.
1307         * include/bits/std_numeric.h:  Ditto.
1308         * include/bits/std_utility.h:  Ditto.
1309         * include/bits/stl_algobase.h:  Ditto.
1310         * include/bits/type_traits.h:  Ditto.
1311         * src/stl-inst.cc:  Ditto.
1313 2001-02-19  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1315         * include/bits/basic_file.h: Add #pragma system_header
1316         * include/bits/basic_ios.h: Ditto.
1317         * include/bits/basic_string.h: Ditto.
1318         * include/bits/char_traits.h: Ditto.
1319         * include/bits/codecvt.h: Ditto.
1320         * include/bits/cpp_type_traits.h:  Ditto.
1321         * include/bits/fpos.h: Ditto.
1322         * include/bits/gslice.h: Ditto.
1323         * include/bits/gslice_array.h: Ditto.
1324         * include/bits/indirect_array.h: Ditto.
1325         * include/bits/ios_base.h: Ditto.
1326         * include/bits/limits_generic.h: Ditto.
1327         * include/bits/locale_facets.h: Ditto.
1328         * include/bits/localefwd.h: Ditto.
1329         * include/bits/mask_array.h: Ditto.
1330         * include/bits/sbuf_iter.h: Ditto.
1331         * include/bits/sequence_concepts.h: Ditto.
1332         * include/bits/slice.h: Ditto.
1333         * include/bits/slice_array.h: Ditto.
1334         * include/bits/std_algorithm.h: Likewise.
1335         * include/bits/std_bitset.h: Likewise.
1336         * include/bits/std_complex.h: Likewise.
1337         * include/bits/std_deque.h: Likewise.
1338         * include/bits/std_fstream.h: Likewise.
1339         * include/bits/std_functional.h: Likewise.
1340         * include/bits/std_iomanip.h: Likewise.
1341         * include/bits/std_ios.h: Likewise.
1342         * include/bits/std_iosfwd.h: Likewise.
1343         * include/bits/std_iostream.h: Likewise.
1344         * include/bits/std_istream.h: Likewise.
1345         * include/bits/std_iterator.h: Likewise.
1346         * include/bits/std_list.h: Likewise.
1347         * include/bits/std_locale.h: Likewise.
1348         * include/bits/std_map.h: Likewise.
1349         * include/bits/std_memory.h: Likewise.
1350         * include/bits/std_numeric.h: Likewise.
1351         * include/bits/std_ostream.h: Likewise.
1352         * include/bits/std_queue.h: Likewise.
1353         * include/bits/std_set.h: Likewise.
1354         * include/bits/std_sstream.h: Likewise.
1355         * include/bits/std_stack.h: Likewise.
1356         * include/bits/std_stdexcept.h: Likewise.
1357         * include/bits/std_streambuf.h: Likewise.
1358         * include/bits/std_string.h: Likewise.
1359         * include/bits/std_utility.h: Likewise.
1360         * include/bits/std_valarray.h: Likewise.
1361         * include/bits/std_vector.h: Likewise.
1362         * include/bits/stringfwd.h: Likewise.
1363         * include/bits/type_traits.h: Likewise.
1364         * include/bits/valarray_array.h: Likewise.
1365         * include/bits/valarray_meta.h: Likewise.
1367 2001-02-19  Andreas Jaeger  <aj@suse.de>
1369         * config/cpu/sparc/sparc64/bits/atomicity.h (__compare_and_swap):
1370         Fix typo.
1372 2001-02-16  Greg Bumgardner <bumgard@roguewave.com>
1374         libstdc++/1734
1375         * include/bits/std_ostream.h: Replaced usage of
1376         _Traits::_S_eos() with _CharT() as per section 17.2.2.1.3.
1377         * include/bits/char_traits.h: Removed non-standard
1378         methods that cannot be used elsewhere.
1380         libstdc++/1885
1381         * include/bits/basic_ios.h: Uncommented #include of
1382         bits/basic_ios.tcc
1384         libstdc++/1897
1385         * include/bits/codecvt.h: See next...
1386         * include/bits/fstream.tcc: See next...
1387         * include/bits/ostream.tcc: Add __extension__
1388         to variable-length arrays.
1390         libstdc++/1967
1391         * include/bits/localefwd.h: Changed int counter type to size_t.
1393         libstdc++/1968
1394         * include/bits/std_fstream.h: Added typedef for __ctype_type.
1396 2001-02-16  Benjamin Kosnik  <bkoz@redhat.com>
1398         * testsuite/21_strings/char_traits.cc: Move to ...
1399         * testsuite/21_strings/char_traits_requirements.cc: ..here.
1400         * testsuite/21_strings/char_traits-int_type.cc: Move to ...
1401         * testsuite/21_strings/char_traits_typedefs.cc: ..here.
1403 2001-02-16  Gabriel Dos Reis  <gdr@codesourcery.com>
1405         * libmath/mathconf.h (FINITE_P, INFINITE_P): Remove macro
1406         definitions.
1408 2001-02-15  Benjamin Kosnik  <bkoz@redhat.com>
1410         * include/bits/c++config: Revert.
1412 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
1414         * include/bits/istream.tcc: Use ios_base::iostate in place of
1415         iostate throughout.  Insert `typename' keyword where necessary.
1416         * include/bits/ostream.tcc: Insert `typename' keyword where
1417         necessary.
1419 2001-02-15  Jeffrey Oldham  <oldham@codesourcery.com>
1421         * include/bits/c++config (_GLIBCPP_FULLY_COMPLIANT_HEADERS):
1422         Define so library is compliant.
1424 2001-02-15  Anthony Green  <green@redhat.com>
1426         * acinclude.m4 (glibcpp_toolexeclibdir): Fix test for cross
1427         compilation.
1428         * aclocal.m4: Regenerate.
1429         * configure: Regenerate.
1431 2001-02-15  Rodney Brown  <RodneyBrown@mynd.com>
1433         * acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1):
1434         Include ieeefp.h for fpclass on UnixWare{2,7}.
1435         * aclocal.m4: Regenerate.
1436         * configure: Regenerate.
1437         * mkcheck.in (size_command): Do without GNU-grep when using
1438         size from binutils.
1440 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
1442         Remove old ABI support from libsupc++.
1443         * libsupc++/cxxabi.h: Remove conditionally compiled code.
1444         * libsupc++/exception_support.cc: Likewise.
1445         * libsupc++/pure.cc: Likewise.
1446         * libsupc++/tinfo.cc: Likewise.
1447         * libsupc++/tinfo.h: Likewise.
1448         * libsupc++/tinfo2.cc: Likewise.
1449         * libsupc++/typeinfo: Likewise.
1450         * libsupc++/vec.cc: Likewise.
1452 2001-02-15  Benjamin Kosnik  <bkoz@redhat.com>
1454         Add support for -fno-exceptions.
1455         * include/bits/exception_support.h: Remove.
1456         * include/bits/basic_string.h: Remove exception_support.
1457         (string::_M_check): Replace __OUTOFRANGE with __throw_out_of_range.
1458         (string::at): Same.
1459         (string::substr): Same.
1460         * include/bits/basic_string.tcc (string::reserve): Replace
1461         __LENGTHERROR with __throw_length_error.
1462         (string::_S_create): Same.
1463         (string::resize): Same.
1464         (string::_M_replace): Same.
1465         (string::replace): Same.
1466         (string::copy): Replace __OUTOFRANGE with __throw_out_of_range.
1467         (string::compare): Same.
1468         * include/bits/stl_vector.h: Remove exception_support.
1469         * src/Makefile.am (base_headers): Remove here.
1470         * src/Makefile.in: Regenerate.
1472         * include/bits/stl_range_errors.h: Remove.
1473         * include/bits/stl_deque.h: Use __throw_range_error.
1474         * include/bits/std_deque.h: Include functexcept.h.
1475         * include/bits/std_vector.h: Same.
1476         * src/Makefile.am (base_headers): Remove here.
1477         * src/Makefile.in: Regenerate.
1478         * include/ext/stl_bvector.h (class __BVECTOR): Use __throw_range_error.
1479         * include/ext/bvector: Remove stl_range_errors.h
1481         * include/bits/c++config (_GLIBCPP_USE_EXCEPTIONS): Remove.
1483         * include/bits/functexcept.h: New file.
1484         * src/functexcept.cc: New file. Definitions for function-based
1485         exception routines.
1486         * src/Makefile.am (sources): Add functexcept.cc.
1487         * src/Makefile.in: Regenerate.
1489         * include/bits/stl_config.h (__STL_USE_EXCEPTIONS): Wrap with
1490         __EXCEPTIONS.
1492         * include/bits/localefwd.h: Include functexcept.h.
1493         * include/bits/std_iosfwd.h: Same.
1495         * include/bits/basic_ios.h: Use __throw_ios_failure instead of
1496         throw basic_ios::failure.
1497         * include/bits/fstream.tcc (filebuf::_M_allocate_buffers):
1498         Use __throw_exception_again.
1499         (filebuf::_M_filebuf_init): Same.
1500         * include/bits/streambuf.tcc (__copy_streambufs): Same.
1501         * include/bits/ostream.tcc (ostream::operator<<): Same.
1502         * include/bits/istream.tcc (istream::operator>>): Same.
1503         * include/bits/basic_string.tcc (string::_M_mutate): Same.
1504         (string::_S_construct): Same.
1505         (string::_M_clone): Same.
1506         * include/bits/locale_facets.tcc (use_facet(const locale&)): Use
1507         __throw_bad_cast.
1508         (num_put<_CharT, _OutIter>::do_put): Use __throw_exception_again.
1509         * src/localename.cc (locale::_Imp::_Imp(const _Impl&, size_t): Use
1510         __throw_exception_again.
1511         (locale::_Imp::_Imp(string, size_t): Same.
1512         (locale::_Imp::_M_replace_facet): Use __throw_runtime_error.
1513         * src/locale.cc (locale::_M_coalesce): Use __throw_exception_again.
1514         (locale::locale(const char*)): Use __throw_runtime_error.
1515         (locale::classic): Use __throw_exception_again.
1516         (locale::_S_normalize_category): Use __throw_runtime_error.
1518         * src/stdexcept.cc: Remove cruft.
1520         * libsupc++/exception_defines.h: New file.
1521         * libsupc++/new_opnt.cc: Include exception_defines.h.
1522         * libsupc++/vec.cc: Same.
1523         (__cxa_vec_new2): Use __throw_exception_again.
1524         (__cxa_vec_new3): Same.
1525         (__cxa_vec_ctor): Same.
1526         (__cxa_vec_delete3): Same.
1527         (__cxa_vec_cctor): Same.
1528         (__cxa_vec_delete2): Same.
1529         (__cxa_vec_dtor): Same.
1530         * libsupc++/exception_support.cc: Include exception_defines.h. Only
1531         compile exception-handling bits if __EXCEPTIONS is defined.
1532         Remove old ABI support.
1533         * libsupc++/new_op.cc (new): Include exception_defines.h. Use
1534         std::__throw_bad_alloc() instead of throw bad_alloc.
1535         * libsupc++/Makefile.am: Add exception_defines.h.
1536         * libsupc++/Makefile.in: Reformat.
1537         * libsupc++/*: Format.
1539 2001-02-15  Phil Edwards  <pme@sources.redhat.com>
1541         * docs/html/configopts.html:  Minor updates and typo fixes.
1542         * docs/html/faq/index.html:  Updates of the "not really bugs" list.
1543         * docs/html/faq/index.txt:  Regenerated.
1545 2001-02-15  Gabriel Dos Reis  <gdr@codesourcery.com>
1547         * testsuite/lib/libstdc++.exp: Lift, temporarily, out of
1548         dejagnu/dg.exp.  Adapt to log options used to run testcases.
1550 2001-02-13  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1552         * testsuite/lib/libstdc++.exp(dg-test): Lift temporarily from
1553         dejagnu/dg.exp.
1555 2001-02-13  Dirk Mueller <dmuell@gmx.net>
1556             Phil Edwards  <pme@sources.redhat.com>
1558         * include/backward/function.h:  Do not use rel_ops for older
1559           headers either.
1560         * include/backward/pair.h:  Likewise.
1562 2001-02-12  Mark Mitchell  <mark@codesourcery.com>
1564         * src/locale.cc: Remove bogus locale::id definitions.
1566 2001-02-11  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1568         * include/bits/std_valarray.h: #undef _DEFINE_LOGICAL_OPERATOR,
1569         not _DEFINE_VALARRAY_OPERATOR which is not existent.
1571         * include/bits/valarray_meta.h (_RefFunClos<>_RefRunClos): Fix
1572         thinko in member initialisation.
1574 2001-02-11  Gabriel Dos Reis  <gdr@codesourcery.com>
1576         * include/bits/std_valarray.h(valarray<>::shift): Avoid
1577         comparaison between signed and unsigned integer types.
1578         (valarray<>::cshift): Reformat.
1580 2001-02-11  Alexandre Oliva  <aoliva@redhat.com>
1582         * src/gen-num-limits.cc: Use sigsetjmp and siglongjmp if available.
1583         * mknumeric_limits: Compile it with -DHAVE_CONFIG_H.
1584         * configure.in: Test for sigsetjmp.
1585         * configure, config.h.in: Rebuilt.
1587 2001-02-11  Gabriel Dos Reis  <gdr@codesourcery.com>
1589         * src/valarray-inst.cc (gslice::_Indexer::_Indexer): Don't flip
1590         lengths and strides.
1591         (__gslice_to_index): Document.
1593 2001-02-11  Gabriel Dos Reis  <gdr@codesourcery.com>
1595         * include/bits/char_traits.h char_traits<char>::int_type: Change
1596         to `int' to match 21.1.3.1/2.
1598         * testsuite/21_strings/char_traits-int_type.C: New test.
1600 2001-02-10  Gabriel Dos Reis  <gdr@codesourcery.com>
1602         * testsuite/Makefile.am: New file.
1604 2001-02-09  Nathan Sidwell  <nathan@codesourcery.com>
1606         * include/c_shadow/bits/std_cstdlib.h (lldiv_t): Fix typo.
1608 2001-02-08  Loren J. Rittle  <ljrittle@acm.org>
1610         * src/locale-inst.cc (fill_n): Instantiate with size_t arguments.
1612 2001-02-08  David Edelsohn  <edelsohn@gnu.org>
1614         * configure.target (aix4*): Remove extra set of brackets.
1616 2001-02-07  Benjamin Kosnik  <bkoz@redhat.com>
1618         Clean up stdexcept.
1619         * include/bits/stringfwd.h: New file.
1620         * include/bits/stl_string_fwd.h: Remove.
1621         * include/bits/localefwd.h: Remove declaration for allocator.
1622         * include/bits/std_iosfwd: Same.
1623         * include/bits/std_string.h: Include it.
1624         * include/bits/std_ios.h: Remove include.
1625         * include/bits/basic_string.h: Tweak.
1626         * libsupc++/new: Format.
1627         * src/Makefile.am (base_headers): Add stringfwd.h, remove
1628         stl_string_fwd.h
1629         * src/Makefile.in: Regenerate.
1630         * include/bits/std_stdexcept.h: Rewrite.
1631         * src/stdexcept.cc: Same.
1633 2001-02-06  Benjamin Kosnik  <bkoz@redhat.com>
1635         * acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): Deal with library
1636         install locations too.
1637         * aclocal.m4: Regenerate.
1638         * configure.in: Remove USE_LIBDIR.
1639         * configure: Regenerate.
1640         * src/Makefile.am (toolexecdir): Simplify, use
1641         glibcpp_toolexecdir, glibcpp_toolexeclibdir.
1642         * src/Makefile.in: Regenerate.
1643         * libsupc++/Makefile.am: Same.
1644         * libsupc++/Makefile.in: Regenerate.
1646         * src/Makefile.am: Just remove special rules for locale-inst.cc and
1647         misc-inst.cc as no longer necessary.
1649         Follow C++STYLE for naming non-static functions.
1650         * include/bits/ostream.tcc (_S_pad_char): Not static, rename to
1651         __pad_char.
1652         * include/bits/streambuf.tcc: Same.
1653         * include/bits/ostream.tcc: Same.
1654         * include/bits/istream.tcc: Same.
1655         * include/bits/locale_facets.tcc (_S_pad_numeric): To __pad_numeric.
1656         (_S_output_float): To __output_float.
1657         * include/bits/std_streambuf.h (_S_copy_streambufs): To
1658         __copy_streambufs.
1659         * include/bits/locale_facets.tcc (_S_build_float_format): To
1660         __build_float_format.
1661         (_S_format): To __output_integer.
1662         (_S_fill): To __pad.
1663         * src/locale.cc: Same.
1664         * src/misc-inst.cc: Fix formatting. Fix signature for wchar_t. Correct
1665         names.
1666         * include/bits/locale_facets.tcc (_S_group_digits): To
1667         __group_digits.
1668         * src/locale-inst.cc: Fixup names. Add use_facet instantiations
1669         for collate, numpunct.
1671 2001-02-06  Phil Edwards  <pme@sources.redhat.com>
1673         * docs/html/configopts.html:  Fix HTML markup.
1674         * docs/html/install.html:  Bring up to date.
1675         * docs/html/17_intro/C++STYLE:  Add global variable conventions.
1676         * docs/html/21_strings/howto.html:  More notes.
1677         * docs/html/22_locale/howto.html:  Fix HTML markup.
1678         * docs/html/27_io/howto.html:  More notes.
1679         * docs/html/27_io/binary_iostreams_kanze.txt:  New file.
1680         * docs/html/27_io/binary_iostreams_kuehl.txt:  New file.
1682 2001-02-06  Jeffrey Oldham  <oldham@codesourcery.com>
1684         * src/misc-inst.cc (_S_pad_char): Modify declaration's parameters
1685         to match header files.
1686         (_S_output_float): Likewise.
1687         (_S_copy_streambufs): Likewise.
1689 2001-02-06  Hyman Rosen  <Hyman.Rosen@kbcfp.com>
1690             Phil Edwards  <pme@sources.redhat.com>
1692         * include/bits/std_istream.h (op>> signed,unsigned char):  Must
1693           use reinterpret_cast, not static_cast.
1695 2001-02-06  Benjamin Kosnik  <bkoz@redhat.com>
1697         * acinclude.m4 (gxx_include_dir): Quote, fix regression.
1698         * aclocal.m4: Regenerate.
1699         * configure: Regenerate.
1701 2001-02-05  Benjamin Kosnik  <bkoz@redhat.com>
1703         * include/bits/locale_facets.h (class moneypunct): Fix typos.
1704         * libsupc++/pure.cc: Revert.
1706 2001-02-05  Benjamin Kosnik  <bkoz@redhat.com>
1708         * acinclude.m4 (GLIBCPP_CHECK_MATH_DECL_1): New macro.
1709         (GLIBCPP_CHECK_MATH_DECL_2): New macro.
1710         (GLIBCPP_CHECK_MATH_DECL_3): New macro.
1711         (GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_1): Use it, check for _* too.
1712         (GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_2): Same.
1713         (GLIBCPP_CHECK_MATH_DECL_AND_LINKAGE_3): Same.
1714         (GLIBCPP_CHECK_MATH_SUPPORT): Remove explicit checks for _* versions.
1715         * aclocal.m4: Regenerate.
1716         * configure: Regenerate.
1718 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
1720         * include/bits/locale_facets.tcc: Remove `static' keyword on
1721         function definitions.
1722         * include/bits/std_streambuf.h: Likewise.
1723         * src/Makefile.am: Remove use of -fimplicit-templates.
1724         * src/Makefile.in: Regenerated.
1725         * src/locale-inst.cc: Explicitly instantiate more functions.
1726         * src/misc-inst.cc: Likewise.
1727         * src/string-inst.cc: Likewise.
1729 2001-02-05  Benjamin Kosnik  <bkoz@redhat.com>
1731         * acinclude.m4 (GLIBCPP_EXPORT_INSTALL_INFO): New
1732         macro. Consolidate all the bits to do with where includes might be
1733         installed.
1734         * aclocal.m4: Regenerate.
1735         * configure.in: Use it.
1736         * configure: Regenerate.
1737         * src/Makefile.am (targetincludep): Use simplified rules.
1738         (targetincludep): Rename gxx_target_include_dir.
1739         (myincludep): Rename gxx_include_dir.
1740         * src/Makefile.in: Regenerate.
1741         * libsupc++/Makefile.am: Use simplified rules.
1742         * libsupc++/Makefile.in: Regenerate.
1744 2001-02-05  Benjamin Kosnik  <bkoz@redhat.com>
1746         * include/c_std/bits/std_cerrno.h: Correct date format for copyright.
1747         * include/c_std/bits/std_cctype.h: Same.
1748         * include/c_std/bits/std_cassert.h: Same.
1749         * include/c_std/bits/std_cstdarg.h: Same.
1750         * include/c_std/bits/std_cstddef.h: Same.
1752         * include/c_std/bits/std_cstdio.h: Undefine all names brought into
1753         namespace std.
1754         * include/c_std/bits/std_ctime.h: Same.
1755         * include/c_std/bits/std_clocale.h: Same.
1756         * include/c_std/bits/std_cmath.h: Same.
1757         * include/c_std/bits/std_csetjmp.h: Same.
1758         * include/c_std/bits/std_csignal.h: Same.
1759         * include/c_std/bits/std_cstring.h: Same.
1760         * include/c_std/bits/std_cstdlib.h: Same.
1761         * include/c_std/bits/std_cwchar.h: Same.
1763 2001-02-05  Phil Edwards  <pme@sources.redhat.com>
1765         * testsuite/27_io/ios_base_members_static.cc:  Swap order of tests.
1767 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
1769         * src/string-inst.cc (string::_M_replace): Explicitly instantiate.
1770         (string::_S_construct): Likewise.
1772 2001-02-05  Gabriel Dos Reis  <gdr@codesourcery.com>
1774         * testsuite/config/default.exp: New file.
1775         * testsuite/config: New directory.
1777 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
1779         * libsupc++/typeinfo (__GXX_MERGED_TYPEINFO_NAMES): New macro.
1780         * libsupc++/tinfo.cc (std::typeinfo::operator==): Use strcmp
1781         whenever !__GXX_MERGED_TYPEINFO_NAMES.
1782         * libsupc++/tinfo2.cc (std::typeinfo::before): Likewise.
1784 2001-02-03  Alexandre Oliva  <aoliva@redhat.com>
1785             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
1787         * Makefile.am (mkinstalldirs): Set.
1788         * src/Makefile.am (mkinstalldirs): Set.
1789         * libmath/Makefile.am (mkinstalldirs): Set.
1790         * libsup++/Makefile.am (mkinstalldirs): Set.
1791         * libio/Makefile.am (mkinstalldirs): Set.
1792         * */Makefile.in: Regenerate.
1794 2001-02-03  Benjamin Kosnik  <bkoz@redhat.com>
1796         * include/bits/stl_threads.h (struct _STL_mutex_lock): Same.
1797         * include/bits/localefwd.h: More initialization cleanups.
1799 2001-02-03  Jeffrey A Law  <law@cygnus.com>
1801         * include/bits/ios_base.h (_S_ios_fmtflags_end): Initialize
1802         correctly targets with 16bit ints.
1803         (_S_ios_openmode_end): Similarly.
1804         (_S_ios_iostate_end): Similarly.
1805         (_S_ios_Seekdir_end): Similarly.
1807 2001-02-02  Phil Edwards  <pme@sources.redhat.com>
1809         * mkcheck.in:  Also limit virtual memory size, for mmap-based mallocs.
1811 2001-02-01  Alexandre Oliva  <aoliva@redhat.com>
1813         * configure.in (toplevel_srcdir, auxdir): Set.
1814         * acinclude.m4 (glibcpp_basedir): Set based on auxdir.
1815         * aclocal.m4, configure, Makefile.in: Rebuilt.
1816         * libio/Makefile.in, math/Makefile.in, src/Makefile.in: Likewise.
1817         * libsupc++-v3/Makefile.am (INCLUDES): Use toplevel_srcdir.
1818         * libsupc++-v3/Makefile.in: Rebuilt.
1819         * libsupc++-v3/configure.in, libsupc++-v3/configure: Removed.
1820         * libsupc++-v3/aclocal.m4, libsupc++-v3/config.h.in: Likewise.
1822 2001-01-30   Benjamin Kosnik  <bkoz@redhat.com>
1824         * config/c_locale_generic.cc: Remove langinfo include.
1826 2001-01-29  Benjamin Kosnik  <bkoz@redhat.com>
1828         Preliminary named locales.
1829         * acinclude.m4 (GLIBCPP_ENABLE_CLOCALE): New macro.
1830         * aclocal.m4: Regenerate.
1831         * configure.in: Use it.
1832         * configure: Regerate.
1833         * src/Makefile.am (sources): Add c++locale.cc.
1834         (build_headers): Add c++locale.h.
1835         * src/Makefile.in: Regenerate.
1836         * config/c_locale_gnu.h: New file.
1837         * config/c_locale_gnu.cc: New file. Non-inline member functions
1838         for named locales, gnu-specific.
1839         * config/c_locale_generic.h: New file.
1840         * config/c_locale_generic.cc: New file. Non-inline member
1841         functions for named locales, generic version.
1842         * docs/html/configopts.html: Add documentation on new options.
1844         * include/bits/locale_facets.h (class _Messages): Remove.
1845         (class _Moneypunct): Remove.
1846         * src/locale-inst.cc: Remove.
1848         * include/bits/locale_facets.h (class _Collate): Remove.
1849         * src/locale-inst.cc (std): Remove.
1850         * src/locale.cc: And here.
1852         * include/bits/localefwd.h (locale::_M_coalesce): New
1853         function. Correctly put together multi-name locales.
1854         (_Impl(const _Impl&, category, size_t)): Remove.
1856         * include/bits/localefwd.h (locale::_Impl): Remove _M_construct_*
1857         member functions.
1858         (_M_normalize_category_names): Remove.
1859         (_M_replace_categories): Fix.
1861         * src/localename.cc (locale::_Impl::_M_construct_collate): Remove.
1862         (locale::_Impl::_M_construct_ctype): Remove.
1863         (locale::_Impl::_M_construct_monetary): Remove.
1864         (locale::_Impl::_M_construct_numeric): Remove.
1865         (locale::_Impl::_M_construct_time): Remove.
1866         (locale::_Impl::_M_construct_messages): Remove.
1868         * include/bits/locale_facets.h (_Bad_use_facet): Remove.
1869         (_Use_facet_failure_handle): Remove.
1870         * src/locale.cc: Remove definitions.
1871         * src/locale-inst.cc: And here.
1873         * testsuite/22_locale/ctor_copy_dtor.cc (test01): Fixup. Add tests.
1875         * src/localename.cc (locale::facet::_S_create_c_locale): Properly
1876         create and error-check underlying locale object.
1877         (locale::facet::_S_destroy_c_locale): Add, take care of properly
1878         tearing down underlying locale object.
1879         * include/bits/localefwd.h (locale::facet): Declare.
1880         * testsuite/22_locale/members.cc: Don't test "fr_FR" locale for
1881         correctness, as glibc apparently has incorrect info in it. Test
1882         with it when it works again.....
1884         * include/bits/localefwd.h (locale::_Impl::__vec_string):
1885         Remove. Number of categories is fixed at six, so just simplify and
1886         make this an array of strings.
1887         (locale::_Impl::_M_has_name): Remove.
1888         (locale::_Impl::_M_name): Remove.
1889         (locale::_Impl::_M_category_names): Turns into...
1890         (locale::_Impl::_M_names): ...this.
1891         (locale::_Impl::_M_has_same_name()): New function.
1892         * src/localename.cc (locale::_Impl::~_Impl()): Remove here.
1893         (locale::_Impl::_Impl(size_t __refs, string __str)): Simplify
1894         signature.
1895         * src/locale.cc (locale::name()): Construct mangled name
1896         accurately reflecting combined locale categories.
1898         * src/locale.cc (locale::classic()): Don't initialize here.
1899         * src/localename.cc (locale::_Impl::_Impl(size_t __num, size_t
1900         __refs, bool __has_name, string __str): Do it here.
1902         * include/bits/localefwd.h: _S_categories_num to
1903         _S_num_categories. _S_facets_num to _S_num_facets.
1904         (locale::id::id()): Explicitly set _M_index to zero.
1905         * src/locale.cc: Same.
1907         * src/locale.cc: (locale::locale(const char*)): Construct named
1908         locales uniquely.
1910         * src/locale.cc: Remove numpunct_byname ctors.
1911         * testsuite/22_locale/numpunct_byname.cc: New file.
1912         * testsuite/22_locale/numpunct.cc: New file.
1914         * include/bits/localefwd.h (class locale): Change data members to
1915         protected, from private.
1916         (_Impl::_M_get_c_locale): Add member function.
1917         (locale::facet::_M_get_global_impl()): Add member function.
1918         * include/bits/locale_facets.h (numpunct::_M_init): Change to take
1919         a __c_locale pointer.
1920         (numpunct::numpunct( __c_locale*, size_t)): Add additonal ctor for
1921         named locales.
1922         * testsuite/22_locale/members.cc: New file, test name and combine.
1924         * include/bits/locale_facets.h (class numpunct): Remove class
1925         _Punct and _Numpunct. Rewrite class numpunct to be correct for
1926         named locales.
1927         * include/bits/localefwd.h (locale::_Imp::_M_c_locale): Add.
1928         * src/localename.cc (_Impl::~_Impl()): Call __frelocale.
1929         (_Imp::_Impl(size_t, size_t, bool, string)) Initialize _M_c_locale.
1930         * src/locale-inst.cc: Remove _Numpunct, _Punct instantiations.
1931         * testsuite/22_locale/numpunct_char_members.cc: New file.
1933 2001-01-28  Gabriel Dos Reis  <gdr@codesourcery.com>
1935         * testsuite/README: Add more comment.
1936         * testsuite/lib/libstdc++.exp: Tweak comment.
1938 2001-01-26  Benjamin Kosnik  <bkoz@kredhat.com>
1940         * libsupc++/pure.cc (writestr): Just use cstdio and std::fputs.
1942 2001-01-25  Loren J. Rittle  <ljrittle@acm.org>
1944         * testsuite/21_strings/inserters_extractors.cc: Remove
1945         explicit reference to 'testsuite/'.
1947 2001-01-25  Richard Henderson  <rth@redhat.com>
1949         * config/cpu/alpha/bits/atomicity.h: Remove tricky .subsetion
1950         bits. Fixes Tru64 build issues.
1952 2001-01-25  Michael Sokolov  <msokolov@ivan.Harhan.ORG>
1954         * acinclude.m4 (GLIBCPP_CHECK_GNU_MAKE): Bourne shell portability bug
1955         (use ${MAKE-make}, not ${MAKE:-make}).
1956         * aclocal.m4, configure: Regenerate.
1958 2001-01-25  Mark Mitchell  <mark@codesourcery.com>
1960         * src/ios.cc: Remove accidental inclusion of <stdio.h> in last
1961         checkin.
1963         * src/Makefile.am (sources): Add globals.cc.
1964         * src/Makefile.in: Regenerated.
1965         * src/globals.cc: New file.
1966         * src/ios.cc (cin): Don't define here, just declare extern.
1967         (cout): Likewise.
1968         (cerr): Likewise.
1969         (clog): Likewise.
1970         (wcin): Likewise.
1971         (wcout): Likewise.
1972         (wcerr): Likewise.
1973         (wclog): Likewise.
1975 2001-01-25  Phil Edwards  <pme@sources.redhat.com>
1977         * include/bits/std_iterator.h:  Do not include stl_relops.h.
1978         * include/bits/std_numeric.h:  Ditto.
1979         * include/bits/stl_algobase.h:  Ditto.
1980         * include/bits/stl_relops.h:  Add comment warning about problems.
1982 2001-01-25  Gabriel Dos Reis  <gdr@codesourcery.com>
1984         * testsuite/27_io/*.cc: Remove explicit reference to 'testsuite/'
1985         in testcases.  Prepare for the DejaGnu based framework.
1986         * mkcheck.in: Adjust call to tests_flags.  Don't mmkdir testsuite
1987         directory -- it is now mkcheck working directory.
1988         * tests_flags.in: Remove reference to $(top_srcdir).  Use
1989         ${SRC_DIR} instead.
1990         * Makefile.am (check, check-install): Change mkcheck invocation
1991         logic.
1992         * Makefile.in: Regenerate.
1994 2001-01-24  Mark Mitchell  <mark@codesourcery.com>
1996         * config/os/aix/bits/atomicity.h (__compare_and_swap): Remove.
1997         (__always_swap): Likewise.
1999 2001-01-23  Chris Demetriou  <cgd@broadcom.com>
2001         * libsupc++/exception_support.cc (__terminate_func): Remove
2002         declaration.
2003         (__terminate_func_ptr): New typedef.
2004         (__terminate, __terminate_set_func): New extern function
2005         prototypes.
2006         (std::terminate): Use __terminate function.
2007         (std::set_terminate): Use __terminate_set_func function.
2009 2001-01-23  Benjamin Kosnik  <bkoz@redhat.com>
2011         * configure.target: Just use os_include_dir always.
2012         * configure.in: Remove calls to GLIBCPP_CHECK_CTYPE_SUPPORT.
2013         Link atomicity files and ctype files here.
2014         * configure: Regenerate.
2015         * acinclude.m4 (GLIBCPP_CHECK_CTYPE_SUPPORT): Remove.
2016         (GLIBCPP_ENABLE_ATOMICITY): Remove.
2017         * aclocal.m4: Regenerate.
2019 2001-01-23  Chris Demetriou  <cgd@broadcom.com>
2021         * configure.in: Place definition of MULTISUBDIR in
2022         libsupc++/Makefile as is done for src/Makefile.
2023         * configure: Regenerate.
2025 2001-01-23  Phil Edwards  <pme@sources.redhat.com>
2027         * acinclude.m4:  Cosmetic changes only.
2028         * aclocal.m4:  Regenerated.
2029         * configure:  Regenerated.
2030         * configure.target:  Update documented list of changed variables.
2031         * docs/html/install.html:  Fix typo.
2032         * docs/html/20_util/howto.html:  More notes on auto_ptr.
2033         * docs/html/27_io/howto.html:  More notes on streabufs.
2034         * docs/html/faq/index.html:  Add rel_ops problem and mention the
2035           DEC as(1) .subsection difficulty.
2036         * docs/html/faq/index.txt:  Regenerated.
2038 2001-01-23  Mark Mitchell  <mark@codesourcery.com>
2040         * ainclude.m4 (GLIBCPP_CHEC_MATH_DECLS_AND_LINKAGE_1): New macro.
2041         (GLIBCPP_CHECK_MATH_SUPPORT): Use it.
2042         (GLIBCPP_CHECK_TYPE_SUPPORT): Don't autoconf ctype information if
2043         its already provided in config.target.
2044         * aclocal.m4: Regenerated.
2045         * configure: Likewise.
2046         * configure.target: Set ctype_include_dir for lots of systems.
2047         * libsupc++/Makefile.am: Explicitly include --tag disable-shared.
2048         * libsupc++/Makefile.in: Regenerated.
2050 2001-01-23  Gabriel Dos Reis  <gdr@codesourcery.com>
2052         * testsuite/lib/libstdc++.exp: Improve.  Add support for @xxx#
2053         keyword capability.
2055         * testsuite/README: Add comment.
2057 2001-01-21  Phil Edwards  <pme@sources.redhat.com>
2059         * docs/html/configopts.html:  Update for current status.  Fix HTML.
2060         * docs/html/install.html:  Update for current status.
2062 2001-01-20  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
2064         * testsuite/libstdc++.tests/tests.exp: New file.
2065         * testsuite/lib/libstdc++.exp: Itou.
2066         * testsuite/README: Itou.
2068 2001-01-20  Gabriel Dos Reis  <gdr@codesourcery.com>
2070         * tests_flags.in: Just output the bare minimum to run tests.
2071         Let's the caller do its own arrangement.
2073         * mkcheck.in: Rename INC_PATH to INCLUDES.  Adjust flags
2074         computations.
2076 2001-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
2078         * testsuite/17_intro: Prepare testcases for new style DejaGnu
2079         framework.
2081 2001-01-18  Gabriel Dos Reis  <gdr@codesourcery.com>
2083         * testsuite/libstdc++.tests, testsuite/lib: New directories.
2085 2001-01-17  Loren J. Rittle  <ljrittle@acm.org>
2087         * mkcheck.in: Construct file names that match $objdir structure.
2088         * testsuite/27_io/filebuf_members-1.txt: New file.
2089         * testsuite/27_io/ifstream_members-1.txt: New file.
2090         * testsuite/27_io/ostream_inserter_char-1.txt: New file.
2092         * testsuite/27_io/ios_base_members_static.cc (test02): Add test.
2093         * testsuite/27_io/ios_base_members_static-1.tst: Add expected output.
2095 2001-01-17  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
2097         * testsuite/27_io/istream_sentry.cc (test02): Fix.
2099 2001-01-17  Benjamin Kosnik  <bkoz@redhat.com>
2101         libstdc++/1605
2102         * include/bits/ios_base.h (ios_base::failure): Tighten up throw specs.
2103         * src/ios.cc (ios_base::failure): Make definitions match.
2104         * libsupc++/typeinfo (class bad_typeid): Add throw specs.
2105         (class bad_cast): Same.
2106         * libsupc++/exception (class exception): Add throw specs.
2107         * libsupc++/exception_support.cc (set_terminate): Add throw specs.
2108         (set_unexpected): Same.
2109         (uncaught_exception): Same.
2110         (what): Same.
2112         * docs/html/17_intro/C++STYLE (classname): Fix.
2114 2001-01-16  Mark Mitchell  <mark@codesourcery.com>
2116         * src/gen-num-limits.cc (INSTANTIATIONS): New macro.
2117         Use it do explicitly instantiate predicate<T> and value<T> for
2118         all the builtin Ts.
2120 2001-01-16  Nathan Sidwell  <nathan@codesourcery.com>
2122         * libsupc++/exception_support.cc (__cp_pop_exception): Fix
2123         uninitialized thinko in last change.
2125 2001-01-16  Mark Mitchell  <mark@codesourcery.com>
2127         * libsupc++/exception_support.cc (__cp_pop_exception): Change
2128         prototype.
2130 2001-01-16  Benjamin Kosnik  <bkoz@redhat.com>
2132         * docs/html/17_intro/C++STYLE (classname): Add more existing
2133         and stylish patterns.
2135         libstdc++/944
2136         * include/bits/istream.tcc (istream::sentry::sentry()): Set
2137         failbit if the state of the stream is not good.
2138         * testsuite/27_io/istream_sentry.cc (test02): Add test.
2139         * testsuite/27_io/istream_manip.cc (test01): Modify.
2141         libstdc++/1019
2142         reported by Paolo Carlini <pcarlini@unitus.it>
2143         * include/bits/istream.tcc (operator>>(istream&, string&)): Fix.
2144         * testsuite/21_strings/inserters_extractors.cc (test08): Add test.
2146         libstdc++/1057
2147         * include/bits/std_streambuf.h (setp): Set _M_buf_size correctly.
2148         * include/bits/streambuf.tcc (xsputn): Remove outside if clause.
2149         (xsgetn): Same. Simplify.
2150         * testsuite/27_io/streambuf.cc (test04): Add testcases.
2152         reported by Larry Evans <jcampbell3@prodigy.net>
2153         * include/bits/streambuf.tcc (streambuf::xsputn): Just check for
2154         equality with eof on returned value from overflow.
2156 2001-01-14  Andreas Jaeger  <aj@suse.de>
2158         * libio/libio.h: Add test for glibc 2.0.
2160 2001-01-12  Benjamin Kosnik  <bkoz@redhat.com>
2162         * config/os/djgpp/bits/*: Fix dates.
2164         * include/bits/basic_string.h (_S_find(const _CharT* __beg, const
2165         _CharT* __end, _CharT __c): Remove.
2166         * include/bits/basic_string.tcc: Substitute traits::find for _S_find.
2167         * include/bits/char_traits.h: Tweak.
2169 2001-01-12  Laurynas Biveinis  <lauras@softhome.net>
2171         * acinclude.m4 (GLIBCPP_CHECK_CTYPE_SUPPORT): check for DJGPP <ctype.h>
2172         (LIB_AC_PROG_CXX): replace [/\\] with [\\/] to work around older
2173         bash bug.
2174         * aclocal.m4: regenerated.
2175         * configure.target: set os_include_dir to config/os/djgpp under DJGPP.
2176         * configure: regenerated.
2177         * config/os/djgpp, config/os/djgpp/bits: new directories.
2178         * config/os/djgpp/bits/ctype_base.h,
2179         config/os/djgpp/bits/ctype_inline.h,
2180         config/os/djgpp/bits/ctype_noninline.h,
2181         config/os/djgpp/bits/os_defines.h: new files.
2183 2001-01-11   Joseph S. Myers  <jsm28@cam.ac.uk>
2185         * include/c_std/bits/std_cstdio.h: Undef printf.
2187 2001-01-10  Benjamin Kosnik  <bkoz@redhat.com>
2189         * src/ios.cc: Fix typo: change cout->wcout.
2191         * src/Makefile.am (targetincludep): Fix for version-specific-libs.
2192         * src/Makefile.in: Regenerate.
2194 2001-01-10  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
2196          * include/bits/std_complex.h: Fix a typo.
2198 2001-01-09  Benjamin Kosnik  <bkoz@redhat.com>
2199                              <kainz@ilm.com>
2201         Fixes for libstdc++/1576
2202         * src/stdstreams.cc: Initialize with NULL filebuf. Delete
2203         file, move contents into....
2204         * src/ios.cc: ...Here. Put defines for iostreams objects and
2205         initialization routines into one file to simplify DSO interaction.
2206         * include/bits/std_iostream.h: Touch.
2207         * include/bits/ios_base.h (_S_synched_with_stdio): Make static.
2208         * src/Makefile.am (sources): Remove stdstreams.cc.
2209         * src/Makefile.in: Regenerate.
2211 2001-01-10  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
2213         * tests_flags.in (check_directory): Fix typo.
2215 2001-01-09  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
2217          * include/bits/std_complex.h: Fix a typo.
2219 2001-01-09  Loren J. Rittle  <ljrittle@acm.org>
2221         * config/os/bsd/freebsd/bits/ctype_inline.h (is): (Make right
2222         code path:) Remove magic constants and restructure to handle
2223         ctype.h bit mask layout changes more gracefully.  (Make fast
2224         code path:) Use __maskrune (), if available.
2225         (is): Remove special case for digit and xdigit masks.
2227 2001-01-09  Robert Lipe <robertlipe@usa.net>
2229         * include/c_std/bits/std_ctime.h: Undefine difftime.
2231 2001-01-09  Alexandre Oliva  <aoliva@redhat.com>
2233         * src/gen-num-limits.cc (signal_adapter): New template function.
2234         (signal_handler): Use it, instead of signal.
2235         (traps<T>): Likewise.  Install SIGTRAP handler too.  Don't
2236         require both tests to trap to set trap_flag.
2238 2001-01-08  Benjamin Kosnik  <bkoz@redhat.com>
2240         * include/bits/fpos.h (fpos:::fpos(streamoff __pos)): Explicitly
2241         initialize mbstate_t member, name offset data members *off, not pos.
2242         * include/bits/fstream.tcc (filebuf::filebuf): Same.
2244 2001-01-08  Benjamin Kosnik  <bkoz@redhat.com>
2246         reported by Chris G. Demetriou <cgd@sibyte.com>
2247         * configure.in: Change -linux-* to -linux*.
2248         * configure: Regenerate.
2250 2001-01-05  Benjamin Kosnik  <bkoz@redhat.com>
2252         Fix 27_io/filebuf_members.cc
2253         * src/localename.cc (locale::_Impl::_Impl(const _Impl& __imp,
2254         const string& __name, category __cat, size_t __refs): Set
2255         _M_has_name with _M_name.
2256         * include/bits/localefwd.h (locale::operator!=): Protect member
2257         function call with this->.
2258         * src/locale.cc (locale::operator==): Make fast checks first.
2259         * include/bits/basic_ios.tcc (basic_ios::init): Simplify.
2261         * include/bits/ios_base.h (_M_synced_with_stdio): Add data member
2262         to ios_base::Init.
2263         * src/ios.cc (ios_base::Init::Init): Initialize here.
2264         (ios_base::sync_with_stdio): Set here.
2266 2001-01-04  Loren J. Rittle  <ljrittle@acm.org>
2268         * config/c_io_stdio.cc (__basic_file<_CharT>::sys_open()): On
2269         systems that support it, call dup() before fdopen().
2271 2001-01-03  Benjamin Kosnik  <bkoz@redhat.com>
2273         * include/c_std/bits/std_cwctype.h: Include std_cwchar.h for wint_t.
2274         * testsuite/17_intro/header_cwctype.cc (main): New file.
2276         * src/Makefile.am (base_headers): Change.
2277         * include/bits/std_string.h: And here.
2278         * include/bits/string.tcc: Tweaks, move to...
2279         * include/bits/basic_string.tcc: ...Here.
2280         * src/string-inst.cc: Simplify, just instantiate the whole class,
2281         not member-by-member.
2283 2001-01-02  Benjamin Kosnik  <bkoz@redhat.com>
2285         * acinclude.m4 (GLIBCPP_ENABLD_CSTDIO): Add in default value.
2286         * aclocal.m4: Regenerate.
2287         * configure: Regenerate.
2289         * include/bits/c++config (__GLIBCPP__): Bump version number.
2291         * ChangeLog: Start new log for year 2001
2292         * ChangeLog-2000: New file.
2294         * docs/html/configopts.html: Make sure default values are current,
2295         add commentary.
2297 2001-01-01  Benjamin Kosnik  <bkoz@fillmore.redhat.com>
2299         * include/c_std/bits/std_cwchar.h: Same.
2300         * testsuite/17_intro/header_cwchar.cc: Same.
2301         * include/c_std/bits/std_ctime.h: Same.
2302         * testsuite/17_intro/header_ctime.cc: Same.
2303         * include/c_std/bits/std_cstdlib.h: Same.
2304         Clean up undefs, make consistent with cwchar and cmath, etc.
2305         * testsuite/17_intro/header_cstdlib.cc: Same.
2306         * include/c_std/bits/std_cstdio.h: Same here.
2307         * testsuite/17_intro/header_cstring.cc: Same.
2308         * include/c_std/bits/std_cstring.h: Include std_cstddef.h for size_t.
2309         * testsuite/17_intro/header_cstring.cc: New file. Check for
2310         size_t in namespace std.
2312         * include/c_std/bits/std_cwchar.h: Explicit checks for mbstate_t.
2313         * acconfig.h (HAVE_MBSTATE_T): Add.
2314         * config.h.in: Regenerate.
2315         * acinclude.m4(GLIBCPP_CHECK_WCHAR_T_SUPPORT): Always test for
2316         mbstate_t.
2317         * aclocal.m4: Regenerate.
2318         * configure: Regenerate.
2319         * testsuite/17_intro/headers_c++.cc: New file.
2320         * testsuite/17_intro/headers_c.cc: Small changes.
2322 2001-01-01  David Billinghurst <David.Billinghurst@riotinto.com>
2324         * tests_flags.in: Fix typo in usage.
2326         * tests_flags.in: Set target specific LIBS for cygwin.