OSDN Git Service

Update comment to reflect test.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / ChangeLog
index 6edd859..2d6cc33 100644 (file)
@@ -1,3 +1,675 @@
+2004-03-29  Loren J. Rittle  <ljrittle@acm.org>
+
+       * testsuite/thread/pthread7-rope.cc: Update comment to reflect test.
+
+2004-03-29  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/thread/pthread7-rope.cc: Fix, unpredictably, depending
+       on allocator behavior, the memory pointed by data2 may well be not
+       trashed.
+
+2004-03-28  Chavdar Botev  <cbotev@yahoo.com>
+
+       PR libstdc++/14245
+       * include/bits/basic_string.tcc
+       (basic_string::basic_string(const basic_string&)): Pass to
+       _Rep::_M_grab the actual allocator of the string being constructed
+       not the default constructed one.
+
+2004-03-27  Benjamin Kosnik  <bkoz@redhat.com>
+
+       libstdc++ PR/13598
+       * config/locale/ieee_1003.1-2001/codecvt_specializations.h
+       (__enc_traits::_M_destroy): New.
+       (__enc_traits::~__enc_traits): Use it.
+       (__enc_traits::operator=): Use _M_destroy, _M_init.
+       (__enc_traits::__enc_traits): Same.
+
+2004-03-27  Petur Runolfsson  <peturr02@ru.is>
+
+       * testsuite/ext/enc_filebuf/char/13598.cc: New.
+
+2004-03-27  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/ext/mt_allocator.h: Uglify consistently names of
+       variables, members and classes; tidy.
+
+2004-03-27  Dhruv Matani  <dhruvbird@gmx.net>
+
+       * include/ext/mt_allocator.h (__mt_alloc<>::deallocate):
+       Deallocation loop rewrote.
+
+2004-03-26  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/ext/mt_allocator.h (__mt_alloc<>::allocate,
+       __mt_alloc<>::deallocate): Protect two instances of
+       block->thread_id with __GTHREADS.
+
+2004-03-25  Gawain Bolton  <gp.bolton@computer.org>
+
+       * include/bits/stl_tree.h (_Rb_tree_impl): Add _Node_allocator
+       default argument in constructors.
+       (_Rb_tree::_M_empty_initialize): Remove.
+       
+2004-03-25  Benjamin Kosnik  <bkoz@redhat.com>
+       
+       * testsuite/23_containers/map/operators/1_neg.cc: Adjust line numbers.
+       * testsuite/23_containers/set/operators/1_neg.cc: Same.
+
+2004-03-25  Dhruv Matani  <dhruvbird@gmx.net>
+
+       * include/bits/cpp_type_traits.h: Changed __is_pod
+       completely. Now, it does not use any of the previous type_traits
+       to detect the pod types, and it also detects function pointers as
+       POD types.
+
+       * include/bits/stl_tree.h: Introduced a new class _Rb_tree_impl,
+       which encapsulates the internal implementation of an rb_tree. Made
+       the allocator a base class of this class instead of the rb_tree,
+       which was not conforming. This _Rb_tree_impl class is also
+       specialized on whether the _Compare parameter is a POD type or
+       not. If so, then it maintains the comparison function as a data
+       member, otherwise it makes the _Compare parameter a base class of
+       itself. Also, _M_key_compare is now a function instead of a data
+       member, so that the above trick can work properly. Delegated the
+       initialization of the other data members to this newly created
+       class. Also, now other member functions of rb_tree must refer to
+       _M_key_compare as _M_impl._M_key_compare(). The other data members
+       (*) can be referenced to as _M_impl.(*), where
+       (*) includes _M_header, and _M_node_count.
+
+2004-03-25  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/ext/mt_allocator.h (__mt_alloc<>::tune):
+       Add _M_min_bin, the size in bytes of the smallest bin.
+       (__mt_alloc<>::tune()): Tweak accordingly.
+       (__mt_alloc<>::tune(size_t, ...)): Likewise.
+       (__mt_alloc<>::block_record): Change to a union: members next
+       and thread_id are never used at the same time.
+       (__mt_alloc<>::allocate): Update consistently.
+       (__mt_alloc<>::deallocate): Likewise.
+       (__mt_alloc<>::_S_initialize): Update setups of _S_binmap and
+       _S_bin_size for the configurable _M_min_size.
+
+2004-03-25  Dhruv Matani  <dhruvbird@gmx.net>
+
+       * include/bits/stl_list.h: Created a _List_impl class and made it
+       derive from the allocator, instead of the list deriving from the
+       allocator class, which was not conformant. Changed all references
+       from this->_M_node to this->_M_impl._M_node * bits/list.tcc: Same
+       as above (changed all references to the concerned variables).
+
+2004-03-25  Dhruv Matani  <dhruvbird@gmx.net>
+
+       * include/bits/stl_deque.h: Created a _Deque_impl class and made
+       it derive from the allocator, instead of the deque deriving from
+       the allocator class, which was not conformant. Changed all
+       references to the _M_start, _M_finish, _M_map, and _M_map_size to
+       _M_impl.*.
+       (_Deque_base<_Tp,_Alloc>::~_Deque_base()): Added this->
+       qualification in 2 places where it was missing.
+       (_Deque_base<_Tp,_Alloc>::_M_initialize_map(size_t)): Same as
+       above.
+       * include/bits/deque.tcc: Same as above (changed all references to
+       the concerned variables).
+
+2004-03-25  Dhruv Matani  <dhruvbird@gmx.net>
+
+       * include/bits/stl_vector.h: Created a _Vector_impl class and made
+       it derive from the allocator, instead of the _Vector_base class,
+       deriving from the allocator which was not conformant. Changed all
+       references to the _M_start, _M_finish, and _M_end_of_storage to
+       _M_impl.*.
+       * include/bits/vector.tcc: Same as above (changed all references
+       to the concerned variables).
+
+2004-03-25  Dhruv Matani  <dhruvbird@gmx.net>
+
+       * testsuite/23_containers/deque/cons/clear_allocator.cc: New.
+       * testsuite/23_containers/list/cons/clear_allocator.cc: New.
+       * testsuite/23_containers/vector/cons/clear_allocator.cc: New.
+       
+2004-03-24  Dhruv Matani  <dhruvbird@gmx.net>
+
+       * include/ext/malloc_allocator.h: Fixed the construct function to
+       call global placement new instead of assignment. Added a check
+       after the return from malloc to check whether returned pointer is
+       NULL, and if so, throw std::bad_alloc().
+       * include/ext/debug_allocator.h: Added a check in the deallocate
+       function to check whether the user has passed a NULL pointer or
+       not.
+       
+2004-03-24  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * docs/html/20_util/allocator.html: Add bitmap_allocator links.
+
+2004-03-24  Andreas Schwab  <schwab@suse.de>
+
+       * testsuite/lib/prune.exp (prune_g++_output): Ignore errata
+       warning from IA64 assembler.
+
+2004-03-24  Dhruv Matani  <dhruvbird@gmx.net>
+       
+       * include/ext/bitmap_allocator.h: (_Bit_scan_forward) -> Made this
+       function call __builtin_ctz instead of the while loop.
+       (allocate) -> If condition has __builtin_expect.
+       (deallocate) -> Ditto.
+       Renamed a few left-over variables and typedefs according to the
+       C++STYLE mentioned in the documentation.
+       Protected calls to __gthread* by __gthread_active_p(), whose value
+       is cached in the local variable __threads_active.
+
+2004-03-24  Felix Yen  <fwy@alumni.brown.edu>
+
+       * testsuite/performance/20_util/allocator/producer_consumer.cc:
+       Use linear algorithm for producer.
+       
+2004-03-24  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/ext/mt_allocator.h (__mt_alloc<>::allocate,
+       __mt_alloc<>::deallocate): Avoid redundant conditionals.
+
+2004-03-23  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/locale_facets.h: Tweaks for 80 column.
+       (__numpunct_cache::_M_cache): Move to locale_facets.tcc.
+       (__moneypunct_cache::_M_cache): Same.
+       (num_get): Don't inherit from __num_base.
+       (num_put): Same.
+       (money_get): Don't inherit from money_base.
+       (money_put): Same.
+       (__timepunct::_M_am_pm_format): New.
+       (time_get::_M_extract_num): Return iterator, use ios_base as argument.
+       (time_get::_M_extract_name): Same.
+       (time_get::_M_extract_via_format): Same.
+       * include/bits/locale_facets.tcc: Tweaks for 80 column.
+       Use _M_getloc instead of getloc.
+       * testsuite/22_locale/money_put/put/char/9780-3.cc: New.
+       * testsuite/22_locale/num_put/put/char/9780-2.cc: New.
+       * testsuite/22_locale/time_put/put/char/9780-1.cc: New.
+
+2004-03-22  Paolo Carlini  <pcarlini@suse.de>
+
+       * acinclude.m4 (GLIBCXX_ENABLE_ALLOCATOR): Add pool_allocator.
+       * configure: Regenerate.
+       * config/allocator/pool_allocator_base.h: New.
+       * include/ext/pool_allocator.h: Convert to a standard-conforming
+       allocator.
+       * src/allocator.cc: Tweak instantiations.
+       * testsuite/performance/20_util/allocator/insert.cc: Add __pool_alloc.
+       * testsuite/performance/20_util/allocator/insert_insert.cc: Ditto.
+       * testsuite/performance/20_util/allocator/list_sort_search.cc: Ditto.
+       * testsuite/performance/20_util/allocator/map_mt_find.cc: Ditto.
+       * testsuite/performance/20_util/allocator/map_thread.cc: Ditto.
+       * testsuite/performance/20_util/allocator/producer_consumer.cc: Ditto.
+
+2004-03-22  Hans-Peter Nilsson  <hp@axis.com>
+
+       * config/cpu/cris/atomicity.h (__atomic_add): Remove "static
+       inline" and attribute-unused.  Qualify parameter __mem with
+       "volatile".
+       (__exchange_and_add): Ditto.  Add back memory clobber to asm.
+
+2004-03-20  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/2.cc:
+       Remove junk.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/3.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/6.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/7.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/8.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/9.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/10.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/11.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_arithmetic/char/13.cc:
+       Likewise.       
+
+2004-03-20  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/std/std_valarray.h: Document DR389 [Ready].
+       * docs/html/ext/howto.html: Add an entry for DR389.
+
+2004-03-19  Michael Eager  <eager@mvista.com>
+
+       * config/cpu/mips/atomicity.h:  Prevent reg loads between LL and
+       SC instructions.
+
+2004-03-19  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/22_locale/num_get/get/char/11.cc: Remove redundant
+       static_cast-s.
+       * testsuite/22_locale/num_get/get/char/12.cc: Likewise.
+       * testsuite/22_locale/num_get/get/char/13.cc: Likewise.
+       * testsuite/22_locale/num_get/get/char/14.cc: Likewise.
+       * testsuite/22_locale/num_get/get/char/15.cc: Likewise.
+       * testsuite/22_locale/num_get/get/wchar_t/11.cc: Likewise.
+       * testsuite/22_locale/num_get/get/wchar_t/12.cc: Likewise.
+       * testsuite/22_locale/num_get/get/wchar_t/13.cc: Likewise.
+       * testsuite/22_locale/num_get/get/wchar_t/14.cc: Likewise.
+       * testsuite/22_locale/num_get/get/wchar_t/15.cc: Likewise.
+
+2004-03-19  Paolo Carlini  <pcarlini@suse.de>
+           Petur Runolfsson  <peturr02@ru.is>
+
+       PR libstdc++/12077
+       * include/ext/stdio_sync_filebuf.h (showmanyc): Remove, there's
+       no way to find out the conversion used by the underlying FILE*.
+       * testsuite/ext/stdio_sync_filebuf/wchar_t/12077.cc: New.
+       * testsuite/27_io/objects/char/9.cc: Tweak.
+
+2004-03-19  Paolo Carlini  <pcarlini@suse.de>
+
+       PR libstdc++/14648
+       * include/ext/ropeimpl.h (rope<>::_S_apply_to_pieces): Fix
+       memory allocation/deallocation calls.
+       * testsuite/ext/14648.cc: New.
+
+2004-03-19  Peter Schmid  <schmid@snake.iap.physik.tu-darmstadt.de>
+
+       PR libstdc++/14647
+       * include/backward/bvector.h (bit_vector): Allocator is in std
+       namespace.
+
+2004-03-19  Phil Edwards  <phil@codesourcery.com>
+
+       * acinclude.m4 (GLIBCXX_CHECK_WCHAR_T_SUPPORT):  Set LIBICONV,
+       not libiconv.  SUBST this variable as well.
+       * testsuite/Makefile.am (site.exp):  New target, based on that
+       created by automake.  Also set libiconv.
+
+       * configure, Makefile.in, include/Makefile.in, libmath/Makefile.in,
+       libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
+       testsuite/Makefile.in:  Regenerate.
+
+2004-03-16  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * acinclude.m4 (GLIBCXX_ENABLE_ALLOCATOR): Default setting is
+       new_allocator for all hosts.
+       * configure: Regenerate.
+       
+2004-03-16  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/22_locale/num_put/put/char/4.cc: Fix for 64-bit pointers.
+       * testsuite/22_locale/num_put/put/wchar_t/4.cc: Likewise.
+       
+2004-03-15  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc (money_get<>::_M_extract):
+       Adjust the logic underlying the parsing of symbol to deal
+       correctly with an optional sign component (i.e., when either
+       negative_sign or positive_sign is empty) 
+       * testsuite/22_locale/money_get/get/char/19.cc: New.
+       * testsuite/22_locale/money_get/get/wchar_t/19.cc: New.
+
+2004-03-15  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc (money_get<>::_M_extract):
+       Do not accept an incomplete currency symbol.
+       * testsuite/22_locale/money_get/get/char/18.cc: New.
+       * testsuite/22_locale/money_get/get/wchar_t/18.cc: New.
+
+2004-03-13  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * config/allocator: New.
+       * config/allocator/bitmap_allocator_base.h: New.
+       * config/allocator/malloc_allocator_base.h: New.
+       * config/allocator/mt_allocator_base.h: New.
+       * config/allocator/new_allocator_base.h: New.
+       * include/bits/allocator.h: Include c++allocator.h.
+       * acinclude.m4 (GLIBCXX_ENABLE_ALLOCATOR): New.
+       * aclocal.m4: Regenerate.
+       * configure.ac: Use GLIBCXX_ENABLE_ALLOCATOR. 
+       * configure: Regenerate.
+       * include/Makefile.am (host_headers_extra): Add c++allocator.h.
+       * include/Makefile.in: Regenerate.
+       * docs/html/configopts.html: Add enable-libstdcxx-allocator.
+
+2004-03-12  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/allocator.h: Revert.
+
+2004-03-12  Paolo Carlini  <pcarlini@suse.de>
+
+       * docs/html/ext/howto.html: Add entry for DR 253 [Ready].
+       * include/bits/gslice_array.h: Add comment about DR 253.
+       * include/bits/indirect_array.h: Likewise.
+       * include/bits/mask_array.h: Likewise.
+       * include/bits/slice_array.h: Likewise.
+
+2004-03-12  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * testsuite/20_util/allocator/14176.cc: New.
+       * include/ext/mt_allocator.h: Formatting fixes.
+       
+2004-03-11  Dhruv Matani  <dhruvbird@HotPOP.com>
+
+       * include/Makefile.am (ext_headers): Add
+       ${ext_srcdir}/bitmap_allocator.h .
+       * include/Makefile.in: Regenerate.
+       * docs/html/ext/ballocator_doc.txt: New file.
+       * include/ext/bitmap_allocator.h: New file.
+       * testsuite/performance/20_util/allocator/list_sort_search.cc: Add 
+       test.
+       * testsuite/performance/20_util/allocator/map_mt_find.cc: Likewise.
+       * testsuite/performance/20_util/allocator/producer_consumer.cc: Add
+       test for the bitmap_allocator<>.
+       * testsuite/performance/20_util/allocator/insert.cc: Likewise.
+       * testsuite/performance/20_util/allocator/insert_insert.cc: Likewise.
+       * testsuite/performance/20_util/allocator/map_thread.cc: Likewise.
+
+2004-03-11  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/std/std_complex.h (pow(const complex&, const _Tp&),
+       pow(const _Tp&, const complex&), pow(const complex&,
+       const complex&)): Fully qualify with std:: a few calls.
+       * testsuite/26_numerics/complex/13450.cc: Minor tweak.
+
+2004-03-11  Steven Bosscher  <stevenb@suse.de>
+
+       PR libstdc++/11706
+       * include/c_std/cmath.tcc (__cmath_power): Define inline.
+
+2004-03-10  Kelley Cook  <kcook@gcc.gnu.org>
+
+       * configure.ac: Bump AC_PREREQ to 2.59.
+
+2004-03-10  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/26_numerics/valarray_subset_assignment.cc: Fix typos.
+
+2004-03-10  Paul Kienzle  <pkienzle@nist.gov>
+           Paolo Carlini  <pcarlini@suse.de>
+
+       PR libstdc++/13450
+       * include/std/std_complex.h (pow(const complex&, const _Tp&),
+       pow(const _Tp&, const complex&)): Use cmath pow only when safe.
+       * testsuite/26_numerics/complex/13450.cc: New.
+
+       * testsuite/26_numerics/cmath/overloads.C: Rename to overloads.cc.
+       * testsuite/26_numerics/complex/pow.C: Rename to pow.cc and fix.
+
+2004-03-10  Jerry Quinn  <jlquinn@optonline.net>
+
+       PR libstdc++/3247
+       * include/bits/gslice_array.h (gslice_array()): Make public.
+       (operator=(gslice_array)): Make public.  Implement.
+       * include/bits/indirect_array.h (indirect_array()): Make public.
+       * include/bits/mask_array.h (mask_array()): Make public.
+       (operator=(mask_array)): Make public.  Implement.
+       * include/bits/valarray_array.tcc (__valarray_copy):
+       Comment.  Add versions for gslice_array and mask_array.
+       * testsuite/26_numerics/valarray_subset_assignment.cc:  New test.
+
+2004-03-09  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * testsuite/23_containers/deque/modifiers/swap.cc: Add in bits for
+       non-weak systems.
+       * testsuite/23_containers/vector/modifiers/swap.cc: Same.
+       * testsuite/23_containers/set/modifiers/swap.cc: Same.
+       * testsuite/23_containers/multiset/modifiers/swap.cc: Same.
+       * testsuite/23_containers/multimap/modifiers/swap.cc: Same.
+       * testsuite/23_containers/map/modifiers/swap.cc: Same.
+       * testsuite/23_containers/list/modifiers/swap.cc: Same.
+
+       * testsuite/22_locale/locale/cons/12658_thread.cc: Catch exceptions.
+
+2004-03-08  Benjamin Kosnik  <bkoz@redhat.com>
+       
+       PR c++/13658
+       * testsuite/23_containers/deque/modifiers/swap.cc: New.
+       * testsuite/23_containers/list/modifiers/swap.cc: New.
+       * testsuite/23_containers/map/modifiers/swap.cc: New.
+       * testsuite/23_containers/multimap/modifiers/swap.cc: New.
+       * testsuite/23_containers/multiset/modifiers/swap.cc: New.
+       * testsuite/23_containers/set/modifiers/swap.cc: New.
+       * testsuite/23_containers/vector/modifiers/swap.cc: New.
+       
+2004-03-08  Petur Runolfsson  <peturr02@ru.is>
+
+       PR libstdc++/12658
+       * testsuite/22_locale/locale/cons/12658_thread.cc: New.
+
+2004-03-08  Paolo Carlini  <pcarlini@suse.de>
+
+       * docs/html/ext/howto.html: Add entry for DR 103 [WP].
+       * include/bits/stl_multiset.h: Add comment about DR 103.
+       * include/bits/stl_set.h: Likewise.
+
+2004-03-08  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc (money_get<>::_M_extract):
+       The value _space_ indicates that at least one space is required
+       at that position.
+       * testsuite/22_locale/money_get/get/char/17.cc: New.
+       * testsuite/22_locale/money_get/get/wchar_t/17.cc: New.
+
+       * testsuite/22_locale/money_get/get/char/7.cc: Minor tweaks.
+       * testsuite/22_locale/money_get/get/wchar_t/7.cc: Likewise.
+
+       * include/bits/locale_facets.tcc (money_get<>::do_get(long_double&)):
+       Remove redundant conditional on __str.size().
+       
+2004-03-08  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/bits/allocator.h: Switch defaults to mt_alloc.
+
+2004-03-06  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * include/ext/mt_allocator.h (_S_initialize): If
+       !__GTHREAD_MUTEX_INIT, then initialize _S_thread_freelist_mutex.
+
+2004-03-06  Benjamin Kosnik  <bkoz@redhat.com>
+
+       PR libstdc++/12658
+       * src/locale_init.cc (locale::locale): Lock critical regions with
+       external mutexes.
+       (locale::global): Same. 
+       * include/bits/concurrence.h (__glibcxx_mutex_define_initialized): 
+       Add in once bits for cases without __GTHREAD_MUTEX_INIT.
+       (__glibcxx_mutex_lock): Same.
+
+       * config/cpu/generic/atomicity.h: Remove
+       _GLIBCXX_NEED_GENERIC_MUTEX, use concurrence.h.
+       * src/misc-inst.cc: Move all locking bits out of this file.
+
+       * config/os/hpux/os_defines.h: Remove _GLIBCXX_INST_ATOMICITY_LOCK.
+       * src/misc-inst.cc: Same.
+       * config/cpu/hppa/atomicity.h: Same.
+
+       * config/linker-map.gnu: Remove types in the signature of atomic
+       exports, as they may vary.
+       
+2004-03-06  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc: Tweak the comment preceding
+       has_facet: doesn't throw.
+
+2004-03-06  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/22_locale/money_get/get/char/1.cc: Clean up.
+       * testsuite/22_locale/money_get/get/char/2.cc: Likewise.
+       * testsuite/22_locale/money_get/get/char/3.cc: Likewise.
+       * testsuite/22_locale/money_get/get/char/4.cc: Likewise.
+       * testsuite/22_locale/money_get/get/wchar_t/1.cc: Likewise.
+       * testsuite/22_locale/money_get/get/wchar_t/2.cc: Likewise.
+       * testsuite/22_locale/money_get/get/wchar_t/3.cc: Likewise.
+       * testsuite/22_locale/money_get/get/wchar_t/4.cc: Likewise.
+
+2004-03-06  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc (num_get<>::_M_extract_float,
+       num_get<>::_M_extract_int, num_get<>::do_get(bool&),
+       __pad<>::_S_pad): Prefer plain operator== to traits::eq().
+       * testsuite/testsuite_character.h (struct __gnu_test::character):
+       Provide operator==.
+       * testsuite/testsuite_hooks.h (struct __gnu_test::pod_char):
+       Likewise.
+
+2004-03-05  Paolo Carlini  <pcarlini@suse.de>
+
+       * testsuite/27_io/fpos/14320-2.cc: Remove xfail.
+
+2004-03-04  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * testsuite/23_containers/multiset/insert/1.cc: Test result string.
+
+       * testsuite/23_containers/bitset/invalidation/1.cc: Main always
+       returns 0.      
+       * testsuite/23_containers/deque/invalidation/4.cc: Same.
+       * testsuite/23_containers/list/invalidation/1.cc: Same.
+       * testsuite/23_containers/list/invalidation/2.cc: Same.
+       * testsuite/23_containers/list/invalidation/3.cc: Same.
+       * testsuite/23_containers/list/invalidation/4.cc: Same.
+       * testsuite/23_containers/map/invalidation/2.cc: Same.
+       * testsuite/23_containers/multimap/invalidation/1.cc: Same.
+       * testsuite/23_containers/multimap/invalidation/2.cc: Same.
+       * testsuite/23_containers/multiset/invalidation/1.cc: Same.
+       * testsuite/23_containers/multiset/invalidation/2.cc: Same.
+       * testsuite/23_containers/set/invalidation/1.cc: Same.
+       * testsuite/23_containers/set/invalidation/2.cc: Same.
+       * testsuite/23_containers/vector/invalidation/1.cc: Same.
+       * testsuite/23_containers/vector/invalidation/2.cc: Same.
+       * testsuite/23_containers/vector/invalidation/3.cc: Same.
+       * testsuite/23_containers/vector/invalidation/4.cc: Same.
+
+2004-03-04  Paolo Carlini  <pcarlini@suse.de>
+
+       * scripts/testsuite_flags.in: Add "-D_GLIBCXX_ASSERT" to
+       CXXFLAGS_save.
+       * testsuite/lib/libstdc++.exp: Don't add it conditionally to
+       DEFAULT_CXXFLAGS. 
+       * testsuite/18_support/numeric_limits.cc: Remove "-D_GLIBCXX_ASSERT"
+       from the dg-options.
+       * testsuite/23_containers/vector/invalidation/1.cc: Likewise.
+       * testsuite/23_containers/vector/invalidation/2.cc: Likewise.
+       * testsuite/23_containers/vector/invalidation/3.cc: Likewise.
+       * testsuite/23_containers/vector/invalidation/4.cc: Likewise.
+       * testsuite/23_containers/vector/resize/1.cc: Likewise.
+       * testsuite/26_numerics/complex_value.cc: Likewise.
+       * testsuite/27_io/ios_base/storage/1.cc: Likewise.
+       * testsuite/27_io/ios_base/storage/2.cc: Likewise.
+       * testsuite/27_io/ios_base/storage/3.cc: Likewise.
+       * testsuite/27_io/manipulators/standard/char/2.cc: Likewise.
+       * testsuite/27_io/objects/char/5.cc: Likewise.
+       * testsuite/27_io/objects/wchar_t/5.cc: Likewise.
+       * testsuite/backward/11460.cc: Likewise.
+       * testsuite/thread/pthread7-rope.cc: Likewise.
+
+       * testsuite/21_strings/basic_string/compare/char/1.cc: Add
+       missing test variable.
+       * testsuite/21_strings/basic_string/compare/wchar_t/1.cc: Add
+       missing test variable.
+
+2004-03-04  Benjamin Kosnik  <bkoz@redhat.com>
+
+       * testsuite/20_util/allocator/1.cc: Provide explicit
+       instantiations for non-weak systems.
+       * testsuite/20_util/binders.cc: Same.
+       * testsuite/20_util/allocator/8230.cc: Same.
+       * testsuite/20_util/allocator/10378.cc: Same.
+       * testsuite/22_locale/ctype/is/wchar_t/2.cc: Same.
+       * testsuite/22_locale/ctype/is/char/2.cc: Same.
+       * testsuite/thread/pthread7-rope.cc: Same.
+       * testsuite/thread/pthread6.cc: Same.   
+       * testsuite/thread/pthread5.cc: Same.           
+       * testsuite/thread/pthread4.cc: Same.   
+       * testsuite/thread/pthread1.cc: Same.
+       * testsuite/ext/rope.cc: Same.
+       * testsuite/ext/hash_set.cc: Same.
+       * testsuite/ext/hash_map.cc: Same.      
+       * testsuite/ext/concept_checks.cc: Same.
+       * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9874.cc: Same.
+       * testsuite/25_algorithms/unique/2.cc: Same.
+       * testsuite/25_algorithms/unique/1.cc: Same.
+       * testsuite/25_algorithms/rotate.cc: Same.
+       * testsuite/25_algorithms/min_max.cc: Same.
+       * testsuite/25_algorithms/equal.cc: Same.       
+       * testsuite/24_iterators/rel_ops.cc: Same.
+       * testsuite/24_iterators/iterator.cc: Same.
+       * testsuite/24_iterators/insert_iterator.cc: Same.
+       * testsuite/24_iterators/front_insert_iterator.cc: Same.
+       * testsuite/24_iterators/back_insert_iterator.cc: Same.
+       * testsuite/23_containers/vector/resize/1.cc: Same.
+       * testsuite/23_containers/vector/modifiers/2.cc: Same.
+       * testsuite/23_containers/vector/modifiers/1.cc: Same.
+       * testsuite/23_containers/vector/invalidation/4.cc: Same.
+       * testsuite/23_containers/vector/invalidation/3.cc: Same.
+       * testsuite/23_containers/vector/invalidation/2.cc: Same.       
+       * testsuite/23_containers/vector/invalidation/1.cc: Same.
+       * testsuite/23_containers/vector/element_access/1.cc: Same.
+       * testsuite/23_containers/vector/cons/6513.cc: Same.
+       * testsuite/23_containers/vector/cons/3.cc: Same.
+       * testsuite/23_containers/vector/cons/2.cc: Same.
+       * testsuite/23_containers/vector/cons/1.cc: Same.
+       * testsuite/23_containers/vector/capacity/8230.cc: Same.
+       * testsuite/23_containers/vector/capacity/1.cc: Same.
+       * testsuite/23_containers/vector/bool/6886.cc: Same.
+       * testsuite/23_containers/stack/members/7158.cc: Same.
+       * testsuite/23_containers/set/invalidation/2.cc: Same.
+       * testsuite/23_containers/set/invalidation/1.cc: Same.
+       * testsuite/23_containers/queue/members/7157.cc: Same.
+       * testsuite/23_containers/priority_queue/members/7161.cc: Same.
+       * testsuite/23_containers/multiset/invalidation/2.cc: Same.
+       * testsuite/23_containers/multiset/invalidation/2.cc: Same.     
+       * testsuite/23_containers/multiset/insert/1.cc: Same.
+       * testsuite/23_containers/multimap/invalidation/2.cc: Same.
+       * testsuite/23_containers/multimap/invalidation/2.cc: Same.
+       * testsuite/23_containers/map/operators/1.cc: Same.
+       * testsuite/23_containers/map/invalidation/2.cc: Same.
+       * testsuite/23_containers/map/invalidation/1.cc: Same.
+       * testsuite/23_containers/map/insert/1.cc: Same.
+       * testsuite/23_containers/list/operators/4.cc: Same.
+       * testsuite/23_containers/list/operators/3.cc: Same.
+       * testsuite/23_containers/list/operators/2.cc: Same.
+       * testsuite/23_containers/list/operators/1.cc: Same.
+       * testsuite/23_containers/list/modifiers/3.cc: Same.
+       * testsuite/23_containers/list/modifiers/2.cc: Same.
+       * testsuite/23_containers/list/modifiers/1.cc: Same.
+       * testsuite/23_containers/list/invalidation/4.cc: Same.
+       * testsuite/23_containers/list/invalidation/3.cc: Same.
+       * testsuite/23_containers/list/invalidation/2.cc: Same.
+       * testsuite/23_containers/list/invalidation/1.cc: Same. 
+       * testsuite/23_containers/list/cons/9.cc: Same.
+       * testsuite/23_containers/list/cons/8.cc: Same.
+       * testsuite/23_containers/list/cons/7.cc: Same.
+       * testsuite/23_containers/list/cons/6.cc: Same.
+       * testsuite/23_containers/list/cons/5.cc: Same.
+       * testsuite/23_containers/list/cons/4.cc: Same.
+       * testsuite/23_containers/list/cons/3.cc: Same.
+       * testsuite/23_containers/list/cons/2.cc: Same.
+       * testsuite/23_containers/list/cons/1.cc: Same.
+       * testsuite/23_containers/list/capacity/1.cc: Same.
+       * testsuite/23_containers/deque/operators/1.cc: Same.
+       * testsuite/23_containers/deque/invalidation/4.cc: Same.
+       * testsuite/23_containers/deque/invalidation/3.cc: Same.
+       * testsuite/23_containers/deque/invalidation/2.cc: Same.
+       * testsuite/23_containers/deque/invalidation/1.cc: Same.
+       * testsuite/23_containers/deque/cons/2.cc: Same.
+       * testsuite/23_containers/deque/cons/1.cc: Same.
+
+       * src/allocator.cc: Add char, wchar_t instantiations
+       to match extern template declarations in memory.h.
+
+2004-03-03  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc (money_put<>::_M_insert):
+       Fix warning regression.
+
+2004-03-03  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc (money_put<>::_M_insert):
+       Deal properly with empty __digits and negative frac_digits,
+       clean-up a bit.
+
 2004-03-03  Jonathan Wakely  <redi@gcc.gnu.org>
 
        * docs/html/documentation.html: Regenerate.