OSDN Git Service

* testsuite/26_numerics/cmath/c99_classification_macros_c.cc:
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / ChangeLog
1 2005-09-10  Joseph S. Myers  <joseph@codesourcery.com>
2
3         * testsuite/26_numerics/cmath/c99_classification_macros_c.cc:
4         XFAIL on *-*-linux*, not *-*-linux-gnu.
5
6 2005-09-09  Benjamin Kosnik  <bkoz@redhat.com>
7             Jakub Jelinek  <jakub@redhat.com>
8
9         * src/debug.cc (iterator_base_mutex): Make static for internal
10         linkage.
11         * src/locale_init.cc (locale_mutex): Same.
12         * src/mt_allocator.cc (freelist_mutex): Same.
13         * src/pool_allocator.cc (palloc_init_mutex): Same.
14         
15 2005-09-02  Paolo Carlini  <pcarlini@suse.de>
16
17         * testsuite/tr1/6_containers/unordered/hashtable/23465.cc:
18         Reduce maximum size and lf.
19
20 2005-09-01  Benjamin Kosnik  <bkoz@redhat.com>
21
22         * include/c_std/std_cmath.h: Declare C99 functions and helper
23         functions as inline.
24
25 2005-09-01  Benjamin Kosnik  <bkoz@redhat.com>
26             Paolo Carlini  <pcarlini@suse.de>
27         
28         * testsuite/lib/libstdc++.exp (check_v3_target_cxa_atexit): Fix
29         comment.
30
31 2005-09-01  Benjamin Kosnik  <bkoz@redhat.com>
32
33         * testsuite/lib/libstdc++.exp (check_v3_target_cxa_atexit): New.
34         * testsuite/lib/dg-options.exp (dg-require-cxa-atexit): New.
35         * testsuite/ext/mt_allocator/deallocate_local-6.cc: New.
36         * testsuite/ext/mt_allocator/deallocate_local-8.cc: New.
37         * testsuite/ext/mt_allocator/deallocate_local_thread-5.cc: New.
38         * testsuite/ext/mt_allocator/deallocate_local_thread-7.cc: New.
39         * docs/html/ext/mt_allocator.html: Add link to examples.
40         * testsuite/testsuite_allocator.h: Tweak.
41         * testsuite/ext/mt_allocator/deallocate_global-2.cc: Same.
42         * testsuite/ext/mt_allocator/deallocate_global-4.cc: Same.
43         * testsuite/ext/mt_allocator/deallocate_global_thread-1.cc: Same.
44         * testsuite/ext/mt_allocator/deallocate_global_thread-3.cc: Same.
45         * testsuite/ext/mt_allocator/deallocate_local-2.cc: Same.
46         * testsuite/ext/mt_allocator/deallocate_local-4.cc: Same.
47         * testsuite/ext/mt_allocator/deallocate_local_thread-1.cc: Same.
48         * testsuite/ext/mt_allocator/deallocate_local_thread-3.cc: Same.
49         * testsuite/ext/new_allocator/deallocate_global.cc: Same.
50         * testsuite/ext/new_allocator/deallocate_local.cc: Same.
51
52 2005-08-31  Paolo Carlini  <pcarlini@suse.de>
53             Kaspar Fischer <fischerk@inf.ethz.ch> 
54
55         PR libstdc++/23632
56         * include/bits/stl_bvector.h (_Bit_iterator::operator[],
57         _Bit_const_iterator::operator[]): Const-ify.
58         * testsuite/23_containers/vector/bool/23632.cc: New.
59
60 2005-08-30  Paolo Carlini  <pcarlini@suse.de>
61
62         PR libstdc++/23578 (cont)
63         * include/bits/stl_bvector.h (class vector<bool>): Add
64         a dummy data() to avoid problems in debug-mode.
65
66 2005-08-30  Paolo Carlini  <pcarlini@suse.de>
67
68         * testsuite/ext/hash_map/23528.cc: New.
69
70 2005-08-29  Paolo Carlini  <pcarlini@suse.de>
71
72         * include/bits/stl_map.h (class map): ... and a missing @a.
73
74 2005-08-29  Paolo Carlini  <pcarlini@suse.de>
75
76         * include/bits/stl_map.h (class map): Add missing % in comment.
77
78 2005-08-29  Paolo Carlini  <pcarlini@suse.de>
79
80         PR libstdc++/23578 (DR 464 [Ready])
81         * include/bits/stl_map.h (class map): Add at(const key_type&)
82         member functions.
83         * include/bits/stl_vector.h (class vector): Add data() member
84         functions.
85         * include/debug/map.h (class map): Adjust consistently.
86         * include/debug/vector (class vector): Likewise.
87         * testsuite/23_containers/map/element_access/1.cc: New.
88         * testsuite/23_containers/vector/data_access/1.cc: Likewise.
89         * docs/html/ext/howto.html: Add an entry for DR 464.
90
91 2005-08-26  Benjamin Kosnik  <bkoz@redhat.com>
92
93         PR libstdc++/20534 (contd)
94         * src/debug.cc (__gnu_debug): Remove __fancy_abort definition.
95         Remove cstdio and cstdlib includes.
96         * include/debug/debug.h: Define inline here. Remove
97         _GLIBCXX_DEBUG_ABORT.
98         * include/debug/macros.h: Remove __fancy_abort declaration,
99         _GLIBXX_DEBUG_ABORT definition.
100         * config/linker-map.gnu: Remove export.
101         
102 2005-08-26  Benjamin Kosnik  <bkoz@redhat.com>
103
104         * scripts/check_compile (UNIQUE_ID): New. Use to name output files.
105
106 2005-08-26  Paolo Carlini  <pcarlini@suse.de>
107
108         PR libstdc++/23081
109         * include/tr1/array: Implement members back(), front(), data(),
110         and the tuple interface; tidy.
111         * testsuite/tr1/6_containers/array/element_access/back.cc: New.
112         * testsuite/tr1/6_containers/array/element_access/data.cc: Likewise.
113         * testsuite/tr1/6_containers/array/element_access/front.cc: Likewise.
114         * testsuite/tr1/6_containers/array/tuple_interface/get.cc: Likewise.
115         * testsuite/tr1/6_containers/array/tuple_interface/tuple_element.cc:
116         Likewise.
117         * testsuite/tr1/6_containers/array/tuple_interface/tuple_size.cc:
118         Likewise.
119
120 2005-08-25  Paolo Carlini  <pcarlini@suse.de>
121
122         * include/tr1/hashtable: Use __throw_exception_again,
123         not naked throw, in the catch clauses.
124
125 2005-08-24  Lawrence Lim  <llim@redhat.com>
126             Jakub Jelinek  <jakub@redhat.com>
127             Benjamin Kosnik  <bkoz@redhat.com>
128
129         PR libstdc++/23550
130         * testsuite/21_strings/char_traits/requirements/char/1.cc
131         (test01): Simplify counting.
132         * testsuite/21_strings/char_traits/requirements/wchar_t/1.cc
133         (test02): Same.
134
135 2005-08-24  Paolo Carlini  <pcarlini@suse.de>
136             Chris Jefferson  <chris@bubblescope.net>
137
138         PR libstdc++/23465
139         * include/tr1/hashtable (hash_code_base::m_swap): Use
140         std::swap.
141         (hashtable<>::hashtable(const hashtable&)): Use copy_code;
142         fix m_allocate_node call.
143         * testsuite/tr1/6_containers/unordered/hashtable/23465.cc: New.
144
145 2005-08-23  Kelley Cook  <kcook@gcc.gnu.org>
146
147         PR libstdc++/23462
148         * testsuite/data/sgetn.txt: Revert to previous FSF address.
149
150 2005-08-23  Thomas Kho  <tkho@ucla.edu>
151
152         PR libstdc++/23358
153         * include/bits/stl_construct.h (_Destroy(_ForwardIterator,
154         _ForwardIterator, allocator<_Tp>)): Removed unused template parameter.
155
156 2005-08-22  Geoffrey Keating  <geoffk@apple.com>
157
158         * testsuite/23_containers/vector/resize/1.cc: XFAIL on darwin8.
159         * testsuite/27_io/ios_base/storage/2.cc: Likewise.
160
161 2005-08-19  J"orn Rennecke <joern.rennecke@st.com>
162
163         * config/cpu/sh/atomicity.h: Replace broken generic code with current
164         copy of generic/atomicity.h .
165
166 2005-08-17  Kelley Cook  <kcook@gcc.gnu.org>
167
168         * All files: Update FSF address.
169
170 2005-08-09  Andrew Pinski  <pinskia@physics.uc.edu>
171
172         * testsuite/26_numerics/cmath/c99_classification_macros_c.cc:
173         xfail on *-*-darwin*.
174
175 2005-08-03  Geoffrey Keating  <geoffk@apple.com>
176
177         * configure.ac: Don't use GCC_NO_EXECUTABLES or clear
178         GLIBCXX_IS_NATIVE on Darwin crosses.
179         * acinclude.m4 (GLIBCXX_CONFIGURE_TESTSUITE): Don't skip configuring
180         the testsuite just because there's no symbol versioning.
181         * configure: Regenerate.
182
183         * acinclude.m4 (GLIBCXX_CHECK_SETRLIMIT_ancilliary): Print
184         status messages.
185         (GLIBCXX_CHECK_S_ISREG_OR_S_IFREG): Likewise.
186         (GLIBCXX_CHECK_POLL): Likewise.
187         (GLIBCXX_CHECK_WRITEV): Likewise.
188         (GLIBCXX_CHECK_INT64_T): Likewise.
189         (GLIBCXX_CHECK_LFS): Likewise.
190         * configure: Regenerate.
191
192 2005-07-30  Andrew Pinski  <pinskia@physics.uc.edu>
193
194         * scripts/make_exports.pl: Pass --strip-underscores to c++filt.
195
196 2005-07-29  H.J. Lu  <hongjiu.lu@intel.com>
197
198         PR libstdc++/22284
199         * libsupc++/eh_personality.cc (PERSONALITY_FUNCTION): Revert
200         the change to info.ttype_base.
201         
202 2005-07-28  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
203
204         * include/std/std_valarray.h: Fix grammar in comments.
205
206 2005-07-25  Geoffrey Keating  <geoffk@apple.com>
207
208         * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Handle darwin-export,
209         and make it the default for Darwin.
210         * scripts/make-exports.pl: New.
211         * src/Makefile.am: Update for changes to GLIBCXX_ENABLE_SYMVERS.
212         Handle darwin-export.
213         * configure: Regenerate.
214         * include/Makefile.in: Regenerate.
215         * libmath/Makefile.in: Regenerate.
216         * libsupc++/Makefile.in: Regenerate.
217         * po/Makefile.in: Regenerate.
218         * src/Makefile.in: Regenerate.
219         * testsuite/Makefile.in: Regenerate.
220
221 2005-07-25  Dave Odell  <evilalias@hotmail.com>
222
223         PR libstdc++/23053
224         * include/tr1/hashtable (hashtable<>::find_node): Const-ify.
225         * testsuite/tr1/6_containers/unordered/hashtable/23053.cc: New.
226
227 2005-07-25  Paolo Carlini  <pcarlini@suse.de>
228
229         PR libstdc++/22515
230         * include/bits/basic_string.h: Declare the specialization
231         operator>>(basic_istream<char>&, basic_string<char>&).
232         * include/std/std_istream.h: Declate the specialization
233         operator>>(basic_istream<char>&, char*).
234         * include/std/std_streambuf.h (basic_streambuf): Add friend
235         declarations for the above.
236         * src/istream.cc: Define the above.
237         * testsuite/27_io/basic_istream/extractors_character/char/4.cc: New.
238         * testsuite/27_io/basic_istream/extractors_character/wchar_t/4.cc:
239         Likewise.
240         * testsuite/performance/27_io/ifstream_extract_chars.cc: Likewise.
241
242 2005-07-20  Paolo Carlini  <pcarlini@suse.de>
243
244         * include/bits/streambuf.tcc (xsgetn, xsputn): Use streamsize
245         instead of size_t.
246         * src/streambuf.cc (__copy_streambufs): Likewise.
247
248 2005-07-18  Paolo Carlini  <pcarlini@suse.de>
249
250         * config/locale/gnu/ctype_members.cc (do_is(mask, wchar_t)):
251         Speed-up for the common case of mask == ctype_base::space;
252         otherwise, exit the loop earlier if the mask is one of the
253         elementary ones.
254
255 2005-07-14  Paolo Carlini  <pcarlini@suse.de>
256
257         PR libstdc++/21193 (float, double, long double)
258         * include/tr1/functional (hash<float>, hash<double>):
259         Reimplement exploiting the Fnv_hash<>::hash helper.
260         (hash<long double>): Reimplement using frexp (in this
261         case, due to random padding bits, the former approach
262         is not generally viable).
263
264 2005-07-13  Paolo Carlini  <pcarlini@suse.de>
265
266         PR libstdc++/21193 (string & wstring)
267         * include/tr1/functional (hash<string>, hash<wstring>):
268         Reimplement using the FNV hash.
269
270         * include/tr1/functional: Trivial formatting fixes.
271
272 2005-07-11  Paolo Carlini  <pcarlini@suse.de>
273
274         * include/bits/ostream.tcc (basic_ostream<>::operator<<(long),
275         basic_ostream<>::operator<<(long long)): Don't deal with oct
276         and hex and casts to unsigned here...
277         * include/bits/locale_facets.tcc (__int_to_char(_CharT*, long,
278         const _CharT*, ios_base::fmtflags), __int_to_char(_CharT*, long
279         long, const _CharT*, ios_base::fmtflags)): ... do that here,
280         instead, as per Table 57.
281         (num_put<>::_M_insert_int): Tidy treatment of numeric base and
282         sign.
283         * include/std/std_ostream.h (operator<<(short), operator<<(int)):
284         Adjust logic, as per the letter of the resolution of DR117 [WP].
285         * testsuite/22_locale/num_put/put/char/10.cc: New.
286         * testsuite/22_locale/num_put/put/wchar_t/10.cc: Likewise.
287         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/7.cc:
288         Likewise.
289         * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/7.cc:
290         Likewise.
291
292 2005-07-07  David Edelsohn  <edelsohn@gnu.org>
293
294         * testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc:
295         Change map_t to map_type.
296
297 2005-07-05  Paolo Carlini  <pcarlini@suse.de>
298
299         Add class __versa_string, a versatile "basic_string-type" class:
300         an additional, non-standard, template parameter allows to specify
301         the preferred base class. Two are provided: __rc_string_base,
302         which implements a behavior very similar to our standard string,
303         and __sso_string_base, not reference-counted and optimized for
304         short strings. 
305         * include/ext/rc_string_base.h: New.
306         * include/ext/sso_string_base.h: Likewise.
307         * include/ext/vstring.h: Likewise.
308         * include/ext/vstring.tcc: Likewise.
309         * include/ext/vstring_fwd.h: Likewise.
310         * include/ext/vstring_util.h: Likewise.
311         * include/Makefile.am: Add.
312         * include/Makefile.in: Regenerate.
313         * testsuite/ext/vstring/explicit_instantiation/1.cc: New.
314         * testsuite/ext/vstring/explicit_instantiation/2.cc: Likewise.
315         * testsuite/ext/vstring/explicit_instantiation/char/1.cc: Likewise.
316         * testsuite/ext/vstring/explicit_instantiation/wchar_t/1.cc: Likewise.
317
318         * Makefile.in: Regenerate with autotools 1.9.3 (to date, the version
319         officially used by v3).
320         * aclocal.m4: Likewise.
321         * libmath/Makefile.in: Likewise.
322         * libsupc++/Makefile.in: Likewise.
323         * po/Makefile.in: Likewise.
324         * src/Makefile.in: Likewise.
325         * testsuite/Makefile.in: Likewise.
326
327 2005-07-01  Paolo Carlini  <pcarlini@suse.de>
328
329         Port from libstdcxx_so_7-branch:
330         2004-10-28  Chris Jefferson  <chris@bubblescope.net>
331
332         PR libstdc++/17441
333         * include/bit/stl_algo.h (find(,,,input_iterator_tag),
334         find(,,,random_access_interator_tag),
335         find_if(,,,input_iterator_tag),
336         find_if(,,,random_access_iterator_tag)): Uglify function name.
337         (find, find_if): Use new uglified specialisation names.
338         * testsuite/25_algorithms/find/17441.cc: New.
339
340 2005-06-30  Ulrich Weigand  <uweigand@de.ibm.com>
341
342         * include/ext/pb_assoc/detail/hash_fn/mask_based_range_hashing.hpp
343         (PB_ASSOC_CLASS_C_DEC::s_highest_bit_1): Cast constant 1 to target
344         type before shifting.
345
346 2005-06-29  Paolo Carlini  <pcarlini@suse.de>
347             
348         PR libstdc++/21244 (cont^2)
349         * include/ext/bitmap_allocator.h: Convert everywhere
350         bits_per_block to size_t.       
351
352 2005-06-29  Jonathan Wakely  <redi@gcc.gnu.org>
353
354         * include/bits/basic_string.h, include/bits/locale_facets.h: Fix
355         Doxygen comments that use wrong parameter and function names.
356
357 2005-06-29  Paolo Carlini  <pcarlini@suse.de>
358
359         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 37.
360         * docs/html/ext/howto.html: Adjust.
361
362 2005-06-29  Paolo Carlini  <pcarlini@suse.de>
363
364         PR libstdc++/22131
365         * include/bits/locale_facets.tcc (num_get<>::_M_extract_int,
366         num_get<>::_M_extract_float, money_get<>::_M_extract):
367         Adjust to assign the result also when digit grouping is
368         wrong (but the grammar is correct), as per 22.2.2.1.2, p11-12
369         (NB: consistently for money_get too).
370         * config/locale/generic/c_locale.cc (__convert_to_v): Do
371         not check ios_base::failbit at the outset.
372         * config/locale/gnu/c_locale.cc: Likewise.
373         * testsuite/22_locale/money_get/get/char/22131.cc: New.
374         * testsuite/22_locale/money_get/get/wchar_t/22131.cc: Likewise.
375         * testsuite/22_locale/num_get/get/char/22131.cc: Likewise.
376         * testsuite/22_locale/num_get/get/wchar_t/22131.cc: Likewise.
377         * testsuite/22_locale/num_get/get/char/12.cc: Adjust.
378         * testsuite/22_locale/num_get/get/wchar_t/12.cc: Likewise.
379         * testsuite/27_io/basic_istream/extractors_arithmetic/char/07.cc:
380         Likewise.
381         * testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/07.cc:
382         Likewise.
383
384 2005-06-28  Paul Brook  <paul@codesourcery.com>
385
386         * acinclude.m4 (GLIBCXX_ENABLE_SJLJ_EXCEPTIONS): Check for
387         __cxa_end_cleanup.
388         * libsupc++/Makefile.am (sources): Add eh_call.c and eh_arm.c.
389         * libsupc++/eh_arm.cc: New file.
390         * libsupc++/eh_call.cc: New file.
391         * libsupc++/eh_catch.cc (__cxa_get_exception_ptr): Use
392         __gxx_caught_object.
393         (__cxa_begin_catch): Ditto. Use __is_gxx_exception_class. Call
394         _Unwind_Complete when using the ARM EABI.
395         (__cxa_end_catch): Use __is_gxx_exception_class.
396         * libsupc++/eh_personality.cc: Define NO_SIZE_OF_ENCODED_VALUE when
397         using the ARM EABI.
398         (save_caught_exception, restore_caught_exception): New functions.
399         (_throw_typet): New typedef.
400         (get_ttype_entry, get_adjusted_ptr, check_exception_spec): Add ARM
401         EABI implementations.
402         (PERSONALITY_FUNCTION): Use new functions.  Addd support for ARM EABI
403         unwinding libary.
404         (__cxa_unexpected): Disable when using the ARM EABI.
405         * libsupc++/eh_throw.cc (__cxa_throw): Use __GXX_INIT_EXCEPTION_CLASS.
406         (__cxa_rethrow): Use __is_gxx_exception_class.  Call
407         _Unwind_RaiseException when using the ARM EABI.
408         * libsupc++/unwind-cxx.h (struct __cxa_exception): Add fields for ARM
409         EABI semantics.
410         (struct __cxa_eh_globals): Ditto.
411         (__cxa_call_terminate): Add prototype.
412         (__cxa_type_match, __cxa_begin_cleanup, __cxa_end_cleanup): Add
413         prototypes.
414         (__get_exception_header_from_obj, __get_exception_header_from_ue):
415         Move earlier in file.
416         (__is_gxx_exception_class, __GXX_INIT_EXCEPTION_CLASS,
417         __gxx_caught_object): New functions.
418         * aclocal.m4: Regenerate.
419         * configure: Regenerate.
420         * Makefile.in: Regenerate.
421         * include/Makefile.in: Regenerate.
422         * libmath/Makefile.in: Regenerate.
423         * libsupc++/Makefile.in: Regenerate.
424         * po/Makefile.in: Regenerate.
425         * src/Makefie.in: Regenerate.
426         * testsuite/makefile.in: Regenerate.
427
428 2005-06-27  Paolo Carlini  <pcarlini@suse.de>
429
430         PR libstdc++/22102
431         * include/bits/stl_tree.h (insert_unique(iterator, const _Val&),
432         insert_equal((iterator, const _Val&)): Reimplement to check both
433         before and after, as per the algorithm "ignore hint if wrong" of
434         ISO paper N1780.
435
436 2005-06-27  Benjamin Kosnik  <bkoz@redhat.com>
437             Ami Tavory  <pbassoc@gmail.com>
438         
439         * docs/html/documentation.html: Add link for policy based
440         associative containers docs.
441         * docs/html/ext/pb_assoc/Std_hash_set_impl.jpg: New.
442         * docs/html/ext/pb_assoc/acks.html: New.
443         * docs/html/ext/pb_assoc/balls_and_bins.jpg: New.
444         * docs/html/ext/pb_assoc/basic_assoc_cntnr.html: New.
445         * docs/html/ext/pb_assoc/basic_assoc_cntnr_compound_data.html: New.
446         * docs/html/ext/pb_assoc/basic_assoc_cntnr_no_data.html: New.
447         * docs/html/ext/pb_assoc/basic_ds_tag.html: New.
448         * docs/html/ext/pb_assoc/basic_hash_assoc_cntnr.html: New.
449         * docs/html/ext/pb_assoc/basic_hash_ds_tag.html: New.
450         * docs/html/ext/pb_assoc/basic_invalidation_guarantee.html: New.
451         * docs/html/ext/pb_assoc/basic_ms_tag.html: New.
452         * docs/html/ext/pb_assoc/basic_tree_assoc_cntnr.html: New.
453         * docs/html/ext/pb_assoc/
454           basic_tree_assoc_cntnr_const_node_iterator.html: New.
455         * docs/html/ext/pb_assoc/
456           basic_tree_assoc_cntnr_node_iterator.html: New.
457         * docs/html/ext/pb_assoc/basic_tree_assoc_cntnr_rev.html: New.
458         * docs/html/ext/pb_assoc/basic_tree_assoc_cntnr_rev_it.html: New.
459         * docs/html/ext/pb_assoc/basic_tree_ds_tag.html: New.
460         * docs/html/ext/pb_assoc/cc_hash_assoc_cntnr.html: New.
461         * docs/html/ext/pb_assoc/cc_hash_ds_tag.html: New.
462         * docs/html/ext/pb_assoc/
463           cc_hash_max_collision_check_resize_trigger.html: New.
464         * docs/html/ext/pb_assoc/cc_hash_policy_cd.jpg: New.
465         * docs/html/ext/pb_assoc/cd.jpg: New.
466         * docs/html/ext/pb_assoc/component_requirements.html: New.
467         * docs/html/ext/pb_assoc/compound_data_enabled_ms_tag.html: New.
468         * docs/html/ext/pb_assoc/compound_data_type.html: New.
469         * docs/html/ext/pb_assoc/compound_ds_tag.html: New.
470         * docs/html/ext/pb_assoc/concepts.html: New.
471         * docs/html/ext/pb_assoc/contact.html: New.
472         * docs/html/ext/pb_assoc/counter_update_metadata.html: New.
473         * docs/html/ext/pb_assoc/counter_update_policy.html: New.
474         * docs/html/ext/pb_assoc/data_enabled_ms_tag.html: New.
475         * docs/html/ext/pb_assoc/design.html: New.
476         * docs/html/ext/pb_assoc/different_underlying_dss.jpg: New.
477         * docs/html/ext/pb_assoc/direct_mask_range_hashing.html: New.
478         * docs/html/ext/pb_assoc/direct_mod_range_hashing.html: New.
479         * docs/html/ext/pb_assoc/disclaimer.html: New.
480         * docs/html/ext/pb_assoc/ds_gen.html: New.
481         * docs/html/ext/pb_assoc/ds_tag_cd.jpg: New.
482         * docs/html/ext/pb_assoc/ds_traits.html: New.
483         * docs/html/ext/pb_assoc/embedded_lists_1.jpg: New.
484         * docs/html/ext/pb_assoc/embedded_lists_2.jpg: New.
485         * docs/html/ext/pb_assoc/examples.html: New.
486         * docs/html/ext/pb_assoc/exception_guarantees_specifics.html: New.
487         * docs/html/ext/pb_assoc/find_invalidation_guarantee.html: New.
488         * docs/html/ext/pb_assoc/find_iterators_cd.jpg: New.
489         * docs/html/ext/pb_assoc/find_iterators_range_ops_1.jpg: New.
490         * docs/html/ext/pb_assoc/find_iterators_range_ops_2.jpg: New.
491         * docs/html/ext/pb_assoc/generics.html: New.
492         * docs/html/ext/pb_assoc/gp_hash_assoc_cntnr.html: New.
493         * docs/html/ext/pb_assoc/gp_hash_ds_tag.html: New.
494         * docs/html/ext/pb_assoc/gp_hash_policy_cd.jpg: New.
495         * docs/html/ext/pb_assoc/hash_and_probe_general.html: New.
496         * docs/html/ext/pb_assoc/hash_based_containers.html: New.
497         * docs/html/ext/pb_assoc/hash_cd.jpg: New.
498         * docs/html/ext/pb_assoc/hash_exponential_size_policy.html: New.
499         * docs/html/ext/pb_assoc/hash_fn.html: New.
500         * docs/html/ext/pb_assoc/hash_load_check_resize_trigger.html: New.
501         * docs/html/ext/pb_assoc/hash_policies.html: New.
502         * docs/html/ext/pb_assoc/hash_policy_cd.jpg: New.
503         * docs/html/ext/pb_assoc/hash_prime_size_policy.html: New.
504         * docs/html/ext/pb_assoc/hash_range_hashing_seq_diagram.jpg: New.
505         * docs/html/ext/pb_assoc/hash_range_hashing_seq_diagram2.jpg: New.
506         * docs/html/ext/pb_assoc/hash_ranged_hash_range_hashing_fns.jpg: New.
507         * docs/html/ext/pb_assoc/hash_standard_resize_policy.html: New.
508         * docs/html/ext/pb_assoc/home.html: New.
509         * docs/html/ext/pb_assoc/index.html: New.
510         * docs/html/ext/pb_assoc/insert_resize_sequence_diagram1.jpg: New.
511         * docs/html/ext/pb_assoc/insert_resize_sequence_diagram2.jpg: New.
512         * docs/html/ext/pb_assoc/insert_resize_sequence_diagram3.jpg: New.
513         * docs/html/ext/pb_assoc/insert_type_methods.html: New.
514         * docs/html/ext/pb_assoc/interface.html: New.
515         * docs/html/ext/pb_assoc/interval_node_invariants.jpg: New.
516         * docs/html/ext/pb_assoc/introduction.html: New.
517         * docs/html/ext/pb_assoc/invalidation_guarantee_cd.jpg: New.
518         * docs/html/ext/pb_assoc/invalidation_guarantee_erase.jpg: New.
519         * docs/html/ext/pb_assoc/lib_download.html: New.
520         * docs/html/ext/pb_assoc/linear_probe_fn.html: New.
521         * docs/html/ext/pb_assoc/list_updates.html: New.
522         * docs/html/ext/pb_assoc/lu_assoc_cntnr.html: New.
523         * docs/html/ext/pb_assoc/lu_based_containers.html: New.
524         * docs/html/ext/pb_assoc/lu_cd.jpg: New.
525         * docs/html/ext/pb_assoc/lu_ds_tag.html: New.
526         * docs/html/ext/pb_assoc/lu_ops.jpg: New.
527         * docs/html/ext/pb_assoc/mmap_value_utils.html: New.
528         * docs/html/ext/pb_assoc/motivation.html: New.
529         * docs/html/ext/pb_assoc/move_to_front_update_metadata.html: New.
530         * docs/html/ext/pb_assoc/move_to_front_update_policy.html: New.
531         * docs/html/ext/pb_assoc/ms_cd.jpg: New.
532         * docs/html/ext/pb_assoc/ms_gen.html: New.
533         * docs/html/ext/pb_assoc/ms_tag_cd.jpg: New.
534         * docs/html/ext/pb_assoc/ms_traits.html: New.
535         * docs/html/ext/pb_assoc/node_invariant_invalidations.jpg: New.
536         * docs/html/ext/pb_assoc/node_invariants.html: New.
537         * docs/html/ext/pb_assoc/node_invariants.jpg: New.
538         * docs/html/ext/pb_assoc/non_unique_mapping.html: New.
539         * docs/html/ext/pb_assoc/non_unique_mapping_containers.jpg: New.
540         * docs/html/ext/pb_assoc/null_data_type.html: New.
541         * docs/html/ext/pb_assoc/null_hash_fn.html: New.
542         * docs/html/ext/pb_assoc/null_probe_fn.html: New.
543         * docs/html/ext/pb_assoc/order_by_key.html: New.
544         * docs/html/ext/pb_assoc/order_statistics_key.html: New.
545         * docs/html/ext/pb_assoc/order_statistics_key_cmp.html: New.
546         * docs/html/ext/pb_assoc/order_statistics_node_updator.html: New.
547         * docs/html/ext/pb_assoc/ov_tree_ds_tag.html: New.
548         * docs/html/ext/pb_assoc/overview.html: New.
549         * docs/html/ext/pb_assoc/pb_assoc_ex.html: New.
550         * docs/html/ext/pb_assoc/portability.html: New.
551         * docs/html/ext/pb_assoc/quadratic_probe_fn.html: New.
552         * docs/html/ext/pb_assoc/range_invalidation_guarantee.html: New.
553         * docs/html/ext/pb_assoc/rank_node_invariants.jpg: New.
554         * docs/html/ext/pb_assoc/rationale_null_node_updator.jpg: New.
555         * docs/html/ext/pb_assoc/rb_tree_ds_tag.html: New.
556         * docs/html/ext/pb_assoc/reference_iterator.jpg: New.
557         * docs/html/ext/pb_assoc/references.html: New.
558         * docs/html/ext/pb_assoc/regression_tests.html: New.
559         * docs/html/ext/pb_assoc/resize_general.html: New.
560         * docs/html/ext/pb_assoc/resize_policies.html: New.
561         * docs/html/ext/pb_assoc/resize_policy_cd.jpg: New.
562         * docs/html/ext/pb_assoc/restoring_node_invariants.jpg: New.
563         * docs/html/ext/pb_assoc/sample_node_updator.hpp: New.
564         * docs/html/ext/pb_assoc/sample_probe_fn.hpp: New.
565         * docs/html/ext/pb_assoc/sample_probe_fn.html: New.
566         * docs/html/ext/pb_assoc/sample_range_hashing.hpp: New.
567         * docs/html/ext/pb_assoc/sample_range_hashing.html: New.
568         * docs/html/ext/pb_assoc/sample_ranged_hash_fn.hpp: New.
569         * docs/html/ext/pb_assoc/sample_ranged_hash_fn.html: New.
570         * docs/html/ext/pb_assoc/sample_ranged_probe_fn.hpp: New.
571         * docs/html/ext/pb_assoc/sample_ranged_probe_fn.html: New.
572         * docs/html/ext/pb_assoc/sample_resize_policy.hpp: New.
573         * docs/html/ext/pb_assoc/sample_resize_policy.html: New.
574         * docs/html/ext/pb_assoc/sample_resize_trigger.hpp: New.
575         * docs/html/ext/pb_assoc/sample_size_policy.hpp: New.
576         * docs/html/ext/pb_assoc/sample_update_policy.hpp: New.
577         * docs/html/ext/pb_assoc/size_policies_general.html: New.
578         * docs/html/ext/pb_assoc/splay_tree_ds_tag.html: New.
579         * docs/html/ext/pb_assoc/timing_tests.html: New.
580         * docs/html/ext/pb_assoc/toc.html: New.
581         * docs/html/ext/pb_assoc/tree_assoc_cntnr.html: New.
582         * docs/html/ext/pb_assoc/
583           tree_assoc_cntnr_const_node_iterator.html: New.
584         * docs/html/ext/pb_assoc/tree_assoc_cntnr_node_iterator.html: New.
585         * docs/html/ext/pb_assoc/tree_based_containers.html: New.
586         * docs/html/ext/pb_assoc/tree_cd.jpg: New.
587         * docs/html/ext/pb_assoc/trigger_policies_general.html: New.
588         * docs/html/ext/pb_assoc/tutorial.html: New.
589         * docs/html/ext/pb_assoc/update_seq_diagram.jpg: New.
590         * include/Makefile.am: Add assoc_srcdir, assoc_builddir, assoc_subdir,
591         assoc_headers.
592         * include/Makefile.in: Regenerate.
593         * include/ext/typelist.h: New.
594         * include/ext/pb_assoc/assoc_cntnr.hpp: New.
595         * include/ext/pb_assoc/data_type.hpp: New.
596         * include/ext/pb_assoc/ds_trait.hpp: New.
597         * include/ext/pb_assoc/exception.hpp: New.
598         * include/ext/pb_assoc/hash_policy.hpp: New.
599         * include/ext/pb_assoc/lu_policy.hpp: New.
600         * include/ext/pb_assoc/ms_trait.hpp: New.
601         * include/ext/pb_assoc/tree_policy.hpp: New.
602         * include/ext/pb_assoc/trivial_iterator_def.hpp: New.
603         * include/ext/pb_assoc/detail/assoc_cntnr_base.hpp: New.
604         * include/ext/pb_assoc/detail/cond_dealtor.hpp: New.
605         * include/ext/pb_assoc/detail/constructors_destructor_fn_imps.hpp: New.
606         * include/ext/pb_assoc/detail/ds_trait_imp.hpp: New.
607         * include/ext/pb_assoc/detail/hash_types_traits.hpp: New.
608         * include/ext/pb_assoc/detail/map_debug_base.hpp: New.
609         * include/ext/pb_assoc/detail/mapping_level_imp.hpp: New.
610         * include/ext/pb_assoc/detail/ms_category_imp.hpp: New.
611         * include/ext/pb_assoc/detail/ms_trait_imp.hpp: New.
612         * include/ext/pb_assoc/detail/order_statistics_imp.hpp: New.
613         * include/ext/pb_assoc/detail/standard_policies.hpp: New.
614         * include/ext/pb_assoc/detail/standard_sizes.hpp: New.
615         * include/ext/pb_assoc/detail/type_utils.hpp: New.
616         * include/ext/pb_assoc/detail/typelist.hpp: New.
617         * include/ext/pb_assoc/detail/types_traits.hpp: New.
618         * include/ext/pb_assoc/detail/basic_assoc_cntnr/
619           constructor_destructor_fn_imps.hpp: New.
620         * include/ext/pb_assoc/detail/basic_assoc_cntnr/
621           constructors_destructor_fn_imps.hpp: New.
622         * include/ext/pb_assoc/detail/basic_assoc_cntnr/d_extract_key.hpp: New.
623         * include/ext/pb_assoc/detail/basic_assoc_cntnr/
624           d_find_fn_imps.hpp: New.
625         * include/ext/pb_assoc/detail/basic_assoc_cntnr/
626           d_insert_fn_imps.hpp: New.
627         * include/ext/pb_assoc/detail/basic_assoc_cntnr/erase_fn_imps.hpp: New.
628         * include/ext/pb_assoc/detail/basic_assoc_cntnr/extract_key.hpp: New.
629         * include/ext/pb_assoc/detail/basic_assoc_cntnr/info_fn_imps.hpp: New.
630         * include/ext/pb_assoc/detail/basic_assoc_cntnr/
631           insert_fn_imps.hpp: New.
632         * include/ext/pb_assoc/detail/basic_assoc_cntnr/
633           iterators_fn_imps.hpp: New.
634         * include/ext/pb_assoc/detail/basic_hash_assoc_cntnr/
635           constructor_destructor_fn_imps.hpp: New.
636         * include/ext/pb_assoc/detail/basic_hash_assoc_cntnr/
637           constructors_destructor_fn_imps.hpp: New.
638         * include/ext/pb_assoc/detail/basic_hash_assoc_cntnr/
639           resize_fn_imps.hpp: New.
640         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
641           constructor_destructor_fn_imps.hpp: New.
642         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
643           constructors_destructor_fn_imps.hpp: New.
644         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
645           erase_fn_imps.hpp: New.
646         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
647           node_iteration_fn_imps.hpp: New.
648         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
649           policy_access_fn_imps.hpp: New.
650         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
651           r_erase_fn_imps.hpp: New.
652         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
653           r_range_iteration_fn_imps.hpp: New.
654         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
655           range_iteration_fn_imps.hpp: New.     
656         * include/ext/pb_assoc/detail/basic_tree_assoc_cntnr/
657           split_join_fn_imps.hpp: New.
658         * include/ext/pb_assoc/detail/bin_search_tree_/
659           bin_search_tree_.hpp: New.
660         * include/ext/pb_assoc/detail/bin_search_tree_/
661           cond_dtor_entry_dealtor.hpp: New.
662         * include/ext/pb_assoc/detail/bin_search_tree_/
663           cond_key_dtor_entry_dealtor.hpp: New.
664         * include/ext/pb_assoc/detail/bin_search_tree_/
665           constructors_destructor_fn_imps.hpp: New.
666         * include/ext/pb_assoc/detail/bin_search_tree_/debug_fn_imps.hpp: New.
667         * include/ext/pb_assoc/detail/bin_search_tree_/erase_fn_imps.hpp: New.
668         * include/ext/pb_assoc/detail/bin_search_tree_/find_fn_imps.hpp: New.
669         * include/ext/pb_assoc/detail/bin_search_tree_/find_iterators.hpp: New.
670         * include/ext/pb_assoc/detail/bin_search_tree_/info_fn_imps.hpp: New.
671         * include/ext/pb_assoc/detail/bin_search_tree_/insert_fn_imps.hpp: New.
672         * include/ext/pb_assoc/detail/bin_search_tree_/
673           iterators_fn_imps.hpp: New.
674         * include/ext/pb_assoc/detail/bin_search_tree_/node_iterators.hpp: New.
675         * include/ext/pb_assoc/detail/bin_search_tree_/
676           r_erase_fn_imps.hpp: New.
677         * include/ext/pb_assoc/detail/bin_search_tree_/rotate_fn_imps.hpp: New.
678         * include/ext/pb_assoc/detail/bin_search_tree_/
679           split_join_fn_imps.hpp: New.
680         * include/ext/pb_assoc/detail/cc_hash_assoc_cntnr/
681           constructor_destructor_fn_imps.hpp: New.
682         * include/ext/pb_assoc/detail/cc_ht_map_/cc_ht_map_.hpp: New.
683         * include/ext/pb_assoc/detail/cc_ht_map_/cmp_fn_imps.hpp: New.
684         * include/ext/pb_assoc/detail/cc_ht_map_/
685           cond_key_dtor_entry_dealtor.hpp: New.
686         * include/ext/pb_assoc/detail/cc_ht_map_/
687           constructor_destructor_fn_imps.hpp: New.
688         * include/ext/pb_assoc/detail/cc_ht_map_/
689           constructor_destructor_no_store_hash_fn_imps.hpp: New.
690         * include/ext/pb_assoc/detail/cc_ht_map_/
691           constructor_destructor_store_hash_fn_imps.hpp: New.
692         * include/ext/pb_assoc/detail/cc_ht_map_/debug_fn_imps.hpp: New.
693         * include/ext/pb_assoc/detail/cc_ht_map_/
694           debug_no_store_hash_fn_imps.hpp: New.
695         * include/ext/pb_assoc/detail/cc_ht_map_/
696           debug_store_hash_fn_imps.hpp: New.
697         * include/ext/pb_assoc/detail/cc_ht_map_/entry_list_fn_imps.hpp: New.
698         * include/ext/pb_assoc/detail/cc_ht_map_/erase_fn_imps.hpp: New.
699         * include/ext/pb_assoc/detail/cc_ht_map_/
700           erase_no_store_hash_fn_imps.hpp: New.
701         * include/ext/pb_assoc/detail/cc_ht_map_/
702           erase_store_hash_fn_imps.hpp: New.
703         * include/ext/pb_assoc/detail/cc_ht_map_/
704           find_fn_imps.hpp: New.
705         * include/ext/pb_assoc/detail/cc_ht_map_/
706           find_no_store_hash_fn_imps.hpp: New.
707         * include/ext/pb_assoc/detail/cc_ht_map_/
708           find_store_hash_fn_imps.hpp: New.
709         * include/ext/pb_assoc/detail/cc_ht_map_/info_fn_imps.hpp: New.
710         * include/ext/pb_assoc/detail/cc_ht_map_/insert_fn_imps.hpp: New.
711         * include/ext/pb_assoc/detail/cc_ht_map_/
712           insert_no_store_hash_fn_imps.hpp: New.
713         * include/ext/pb_assoc/detail/cc_ht_map_/
714           insert_store_hash_fn_imps.hpp: New.
715         * include/ext/pb_assoc/detail/cc_ht_map_/iterators_fn_imps.hpp: New.
716         * include/ext/pb_assoc/detail/cc_ht_map_/
717           policy_access_fn_imps.hpp: New.
718         * include/ext/pb_assoc/detail/cc_ht_map_/resize_fn_imps.hpp: New.
719         * include/ext/pb_assoc/detail/cc_ht_map_/
720           resize_no_store_hash_fn_imps.hpp: New.
721         * include/ext/pb_assoc/detail/cc_ht_map_/
722           resize_store_hash_fn_imps.hpp: New.
723         * include/ext/pb_assoc/detail/cc_ht_map_/size_fn_imps.hpp: New.
724         * include/ext/pb_assoc/detail/cc_ht_map_/standard_policies.hpp: New.
725         * include/ext/pb_assoc/detail/eq_fn/eq_by_less.hpp: New.
726         * include/ext/pb_assoc/detail/eq_fn/hash_eq_fn.hpp: New.
727         * include/ext/pb_assoc/detail/gp_hash_assoc_cntnr/
728           constructor_destructor_fn_imps.hpp: New.
729         * include/ext/pb_assoc/detail/gp_ht_map_/
730           constructor_destructor_fn_imps.hpp: New.
731         * include/ext/pb_assoc/detail/gp_ht_map_/
732           constructor_destructor_no_store_hash_fn_imps.hpp: New.
733         * include/ext/pb_assoc/detail/gp_ht_map_/
734           constructor_destructor_store_hash_fn_imps.hpp: New.
735         * include/ext/pb_assoc/detail/gp_ht_map_/debug_fn_imps.hpp: New.
736         * include/ext/pb_assoc/detail/gp_ht_map_/
737           debug_no_store_hash_fn_imps.hpp: New.
738         * include/ext/pb_assoc/detail/gp_ht_map_/
739           debug_store_hash_fn_imps.hpp: New.
740         * include/ext/pb_assoc/detail/gp_ht_map_/erase_fn_imps.hpp: New.
741         * include/ext/pb_assoc/detail/gp_ht_map_/
742           erase_no_store_hash_fn_imps.hpp: New.
743         * include/ext/pb_assoc/detail/gp_ht_map_/
744           erase_store_hash_fn_imps.hpp: New.
745         * include/ext/pb_assoc/detail/gp_ht_map_/find_fn_imps.hpp: New.
746         * include/ext/pb_assoc/detail/gp_ht_map_/
747           find_no_store_hash_fn_imps.hpp: New.
748         * include/ext/pb_assoc/detail/gp_ht_map_/
749           find_store_hash_fn_imps.hpp: New.
750         * include/ext/pb_assoc/detail/gp_ht_map_/gp_ht_map_.hpp: New.
751         * include/ext/pb_assoc/detail/gp_ht_map_/info_fn_imps.hpp: New.
752         * include/ext/pb_assoc/detail/gp_ht_map_/insert_fn_imps.hpp: New.
753         * include/ext/pb_assoc/detail/gp_ht_map_/
754           insert_no_store_hash_fn_imps.hpp: New.
755         * include/ext/pb_assoc/detail/gp_ht_map_/
756           insert_store_hash_fn_imps.hpp: New.
757         * include/ext/pb_assoc/detail/gp_ht_map_/iterator_fn_imps.hpp: New.
758         * include/ext/pb_assoc/detail/gp_ht_map_/
759           policy_access_fn_imps.hpp: New.
760         * include/ext/pb_assoc/detail/gp_ht_map_/resize_fn_imps.hpp: New.
761         * include/ext/pb_assoc/detail/gp_ht_map_/
762           resize_no_store_hash_fn_imps.hpp: New.
763         * include/ext/pb_assoc/detail/gp_ht_map_/
764           resize_store_hash_fn_imps.hpp: New.
765         * include/ext/pb_assoc/detail/hash_fn/
766           direct_mask_range_hashing_imp.hpp: New.
767         * include/ext/pb_assoc/detail/hash_fn/
768           direct_mod_range_hashing_imp.hpp: New.
769         * include/ext/pb_assoc/detail/hash_fn/linear_probe_fn_imp.hpp: New.
770         * include/ext/pb_assoc/detail/hash_fn/
771           mask_based_range_hashing.hpp: New.
772         * include/ext/pb_assoc/detail/hash_fn/mod_based_range_hashing.hpp: New.
773         * include/ext/pb_assoc/detail/hash_fn/probe_fn_base.hpp: New.
774         * include/ext/pb_assoc/detail/hash_fn/quadratic_probe_fn_imp.hpp: New.
775         * include/ext/pb_assoc/detail/hash_fn/ranged_hash_fn.hpp: New.
776         * include/ext/pb_assoc/detail/hash_fn/ranged_probe_fn.hpp: New.
777         * include/ext/pb_assoc/detail/lu_assoc_cntnr/
778           constructor_destructor_fn_imps.hpp: New.
779         * include/ext/pb_assoc/detail/lu_assoc_cntnr/
780           policy_access_fn_imps.hpp: New.
781         * include/ext/pb_assoc/detail/lu_map_/
782           constructor_destructor_fn_imps.hpp: New.
783         * include/ext/pb_assoc/detail/lu_map_/debug_fn_imps.hpp: New.
784         * include/ext/pb_assoc/detail/lu_map_/erase_fn_imps.hpp: New.
785         * include/ext/pb_assoc/detail/lu_map_/find_fn_imps.hpp: New.
786         * include/ext/pb_assoc/detail/lu_map_/info_fn_imps.hpp: New.
787         * include/ext/pb_assoc/detail/lu_map_/insert_fn_imps.hpp: New.
788         * include/ext/pb_assoc/detail/lu_map_/iterators_fn_imps.hpp: New.
789         * include/ext/pb_assoc/detail/lu_map_/lu_map_.hpp: New.
790         * include/ext/pb_assoc/detail/lu_map_/policy_access_fn_imps.hpp: New.
791         * include/ext/pb_assoc/detail/lu_policy/
792           counter_lu_metadata_imp.hpp: New.
793         * include/ext/pb_assoc/detail/lu_policy/counter_lu_policy_imp.hpp: New.
794         * include/ext/pb_assoc/detail/lu_policy/mtf_lu_policy_imp.hpp: New.
795         * include/ext/pb_assoc/detail/ov_tree_map_/cond_dtor.hpp: New.
796         * include/ext/pb_assoc/detail/ov_tree_map_/
797           constructors_destructor_fn_imps.hpp: New.
798         * include/ext/pb_assoc/detail/ov_tree_map_/debug_fn_imps.hpp: New.
799         * include/ext/pb_assoc/detail/ov_tree_map_/erase_fn_imps.hpp: New.
800         * include/ext/pb_assoc/detail/ov_tree_map_/find_fn_imps.hpp: New.
801         * include/ext/pb_assoc/detail/ov_tree_map_/info_fn_imps.hpp: New.
802         * include/ext/pb_assoc/detail/ov_tree_map_/insert_fn_imps.hpp: New.
803         * include/ext/pb_assoc/detail/ov_tree_map_/iterators_fn_imps.hpp: New.
804         * include/ext/pb_assoc/detail/ov_tree_map_/node_iterators.hpp: New.
805         * include/ext/pb_assoc/detail/ov_tree_map_/ov_tree_map_.hpp: New.
806         * include/ext/pb_assoc/detail/ov_tree_map_/split_join_fn_imps.hpp: New.
807         * include/ext/pb_assoc/detail/rb_tree_map_/
808           constructors_destructor_fn_imps.hpp: New.
809         * include/ext/pb_assoc/detail/rb_tree_map_/debug_fn_imps.hpp: New.
810         * include/ext/pb_assoc/detail/rb_tree_map_/erase_fn_imps.hpp: New.
811         * include/ext/pb_assoc/detail/rb_tree_map_/find_fn_imps.hpp: New.
812         * include/ext/pb_assoc/detail/rb_tree_map_/info_fn_imps.hpp: New.
813         * include/ext/pb_assoc/detail/rb_tree_map_/insert_fn_imps.hpp: New.
814         * include/ext/pb_assoc/detail/rb_tree_map_/node.hpp: New.
815         * include/ext/pb_assoc/detail/rb_tree_map_/rb_tree_.hpp: New.
816         * include/ext/pb_assoc/detail/rb_tree_map_/split_join_fn_imps.hpp: New.
817         * include/ext/pb_assoc/detail/resize_policy/
818           cc_hash_max_collision_resize_trigger_imp.hpp: New.
819         * include/ext/pb_assoc/detail/resize_policy/
820           hash_exponential_size_policy_imp.hpp: New.
821         * include/ext/pb_assoc/detail/resize_policy/
822           hash_load_check_resize_trigger_imp.hpp: New.
823         * include/ext/pb_assoc/detail/resize_policy/
824           hash_prime_size_policy_imp.hpp: New.
825         * include/ext/pb_assoc/detail/resize_policy/
826           hash_standard_resize_policy_imp.hpp: New.
827         * include/ext/pb_assoc/detail/resize_policy/
828           ht_prime_size_policy_imp.hpp: New.
829         * include/ext/pb_assoc/detail/resize_policy/size_base.hpp: New.
830         * include/ext/pb_assoc/detail/splay_tree_/
831           constructors_destructor_fn_imps.hpp: New.
832         * include/ext/pb_assoc/detail/splay_tree_/debug_fn_imps.hpp: New.
833         * include/ext/pb_assoc/detail/splay_tree_/erase_fn_imps.hpp: New.
834         * include/ext/pb_assoc/detail/splay_tree_/find_fn_imps.hpp: New.
835         * include/ext/pb_assoc/detail/splay_tree_/info_fn_imps.hpp: New.
836         * include/ext/pb_assoc/detail/splay_tree_/insert_fn_imps.hpp: New.
837         * include/ext/pb_assoc/detail/splay_tree_/node.hpp: New.
838         * include/ext/pb_assoc/detail/splay_tree_/splay_fn_imps.hpp: New.
839         * include/ext/pb_assoc/detail/splay_tree_/splay_tree_.hpp: New.
840         * include/ext/pb_assoc/detail/splay_tree_/split_join_fn_imps.hpp: New.
841         * include/ext/pb_assoc/detail/tree_assoc_cntnr/
842           constructor_destructor_fn_imps.hpp: New.
843         * include/ext/pb_assoc/detail/tree_policy/
844           null_node_updator_imp.hpp: New.
845         * include/ext/pb_assoc/detail/tree_policy/
846           order_statistics_imp.hpp: New.
847         * include/ext/pb_assoc/detail/typelist/typelist_append.hpp: New.
848         * include/ext/pb_assoc/detail/typelist/typelist_apply.hpp: New.
849         * include/ext/pb_assoc/detail/typelist/typelist_at_index.hpp: New.
850         * include/ext/pb_assoc/detail/typelist/typelist_contains.hpp: New.
851         * include/ext/pb_assoc/detail/typelist/typelist_filter.hpp: New.
852         * include/ext/pb_assoc/detail/typelist/typelist_transform.hpp: New.
853         * include/ext/pb_assoc/detail/typelist/
854           typelist_typelist_append.hpp: New.
855         * include/ext/pb_assoc/detail/unordered_iterator/
856           const_find_iterator.hpp: New.
857         * include/ext/pb_assoc/detail/unordered_iterator/
858           const_iterator.hpp: New.
859         * include/ext/pb_assoc/detail/unordered_iterator/
860           find_iterator.hpp: New.
861         * include/ext/pb_assoc/detail/unordered_iterator/iterator.hpp: New.
862         * include/ext/pb_assoc/detail/value_type_adapter/
863           constructor_destructor_and_related.hpp: New.
864         * include/ext/pb_assoc/detail/value_type_adapter/
865           erase_fn_imps.hpp: New.
866         * include/ext/pb_assoc/detail/value_type_adapter/
867           erase_if_pred.hpp: New.
868         * include/ext/pb_assoc/detail/value_type_adapter/find_fn_imps.hpp: New.
869         * include/ext/pb_assoc/detail/value_type_adapter/info_fn_imps.hpp: New.
870         * include/ext/pb_assoc/detail/value_type_adapter/
871         insert_fn_imps.hpp: New.
872         * include/ext/pb_assoc/detail/value_type_adapter/
873         invalidation_guarantee_selector.hpp: New.
874         * include/ext/pb_assoc/detail/value_type_adapter/
875         it_value_type_traits.hpp: New.
876         * include/ext/pb_assoc/detail/value_type_adapter/iterator.hpp: New.
877         * include/ext/pb_assoc/detail/value_type_adapter/
878         iterator_fn_imps.hpp: New.
879         * include/ext/pb_assoc/detail/value_type_adapter/ref_pair.hpp: New.
880         * include/ext/pb_assoc/detail/value_type_adapter/
881         value_type_adapter.hpp: New.
882         * include/ext/pb_assoc/detail/value_type_adapter/
883         value_type_traits.hpp: New.
884         * testsuite/Makefile.am (CLEANFILES): Add .o, .dat, .cc.
885         * testsuite/Makefile.in: Regenerate.
886         * testsuite/testsuite_common_types.h: New.
887         * testsuite/testsuite_visualization.h: New.
888         * testsuite/ext/pb_assoc/example/basic_map.cc: New.
889         * testsuite/ext/pb_assoc/example/basic_multimap.cc: New.
890         * testsuite/ext/pb_assoc/example/basic_set.cc: New.
891         * testsuite/ext/pb_assoc/example/ds_traits.cc: New.
892         * testsuite/ext/pb_assoc/example/erase_if.cc: New.
893         * testsuite/ext/pb_assoc/example/extract_key.cc: New.
894         * testsuite/ext/pb_assoc/example/hash_find_neg.cc: New.
895         * testsuite/ext/pb_assoc/example/hash_illegal_resize.cc: New.
896         * testsuite/ext/pb_assoc/example/hash_initial_size.cc: New.
897         * testsuite/ext/pb_assoc/example/hash_load_set_change.cc: New.
898         * testsuite/ext/pb_assoc/example/hash_mod.cc: New.
899         * testsuite/ext/pb_assoc/example/hash_resize.cc: New.
900         * testsuite/ext/pb_assoc/example/hash_resize_neg.cc: New.
901         * testsuite/ext/pb_assoc/example/hash_shift_mask.cc: New.
902         * testsuite/ext/pb_assoc/example/mapping_level.cc: New.
903         * testsuite/ext/pb_assoc/example/mapping_level_neg.cc: New.
904         * testsuite/ext/pb_assoc/example/ms_traits.cc: New.
905         * testsuite/ext/pb_assoc/example/ranged_hash.cc: New.
906         * testsuite/ext/pb_assoc/example/store_hash.cc: New.
907         * testsuite/ext/pb_assoc/example/tree_intervals.cc: New.
908         * testsuite/ext/pb_assoc/example/tree_join.cc: New.
909         * testsuite/ext/pb_assoc/example/tree_order_statistics.cc: New.
910         * testsuite/ext/pb_assoc/example/tree_order_statistics_join.cc: New.
911         * testsuite/ext/pb_assoc/example/tree_split.cc: New.
912         * testsuite/performance/20_util/allocator/(insert.cc,
913           insert_insert.cc, list_sort_search.cc, map_mt_find.cc, map_thread.cc,
914           producer_consumer.cc): Recast to use typelists and move to...
915         * testsuite/performance/23_containers/find/map.cc: New.
916         * testsuite/performance/23_containers/index/map.cc: New.
917         * testsuite/performance/23_containers/insert/associative.cc: New.
918         * testsuite/performance/23_containers/insert/sequence.cc: New.
919         * testsuite/performance/23_containers/insert_erase/associative.cc: New.
920         * testsuite/performance/23_containers/producer_consumer/
921         (associative.cc, sequence.cc): New.
922         * testsuite/performance/23_containers/sort_search/list.cc: New.
923         * testsuite/performance/23_containers/container_benchmark.cc: Remove.
924         * testsuite/performance/23_containers/map_create_fill.cc: Move...
925         * testsuite/performance/23_containers/create/map.cc: ...here.
926         * testsuite/performance/23_containers/set_create_from_sorted.cc: Move.
927         * testsuite/performance/23_containers/create_from_sorted/set.cc: here.
928         * testsuite/performance/23_containers/list_create_fill_sort.cc: Move...
929         * testsuite/performance/23_containers/create_sort/list.cc: ...here.
930         * testsuite/performance/23_containers/set_insert_from_sorted.cc: Move.
931         * testsuite/performance/23_containers/insert_from_sorted/set.cc: here.
932         
933 2005-06-23  Jakub Jelinek  <jakub@redhat.com>
934
935         PR libstdc++/22109
936         * src/compatibility.cc (_GLIBCXX_SYMVER_COMPATIBILITY): Remove.
937         (istreambuf_iterator, basic_fstream, basic_ifstream, basic_ofstream,
938         _M_copy, _M_move, _M_assign, _M_disjunct, _M_check_length,
939         _M_set_length_and_sharable, ignore, eq): Define to XX suffixed
940         variants.
941         (ignore (streamsize)): Remove _W prefixed aliases.
942         (_GLIBCXX_3_4_SYMVER_SPECIAL, _GLIBCXX_3_4_5_SYMVER_SPECIAL,
943         _GLIBCXX_APPLY_SYMVER_SPECIAL): Remove.
944         (_GLIBCXX_3_4_SYMVER, _GLIBCXX_3_4_5_SYMVER): Add XXname argument.
945         Use #XXname instead of #name as the alias argument.
946         * config/abi/compatibility.h: Replace uses of
947         _GLIBCXX_APPLY_SYMVER_SPECIAL with _GLIBCXX_APPLY_SYMVER.  Always
948         pass 2 arguments to the _GLIBCXX_APPLY_SYMVER macro.
949         * include/bits/char_traits.h (char_traits::eq): Revert 2005-06-15
950         change.
951         * acinclude.m4: Decrease glibcxx_min_gnu_ld_version back to 21400.
952         * configure: Rebuilt.
953
954 2005-06-19  Benjamin Kosnik  <bkoz@redhat.com>
955
956         PR libstdc++/22111
957         * acinclude.m4 (GLIBCXX_CONFIGURE_TESTSUITE): Remove
958         GLIBCXX_TEST_ABI. Remove duplicate _GLIBCXX_ASM_SYMVER define.
959         Don't enable abi testing unless versioned.
960         * configure: Regenerate.
961         * testsuite/Makefile.am (check-abi): Remove conditional.
962         * testsuite/Makefile.in: Regenerate.
963         * testsuite/libstdc++-abi/abi.exp: Call build_support, then check
964         v3-symver before proceeding.
965         * testsuite/lib/libstdc++.exp (libstdc++-dg-test): Set v3-symvers
966         if _GLIBCXX_SYMVER.
967         
968 2005-06-17  Paolo Carlini  <pcarlini@suse.de>
969
970         Port from libstdcxx_so_7-branch:
971         2005-01-12  Christopher Jefferson <chris@bubblescope.net>
972
973         * include/bits/stl_function.h (mem_fun_t, const_mem_fun_t,
974         mem_fun_ref_t, const_mem_fun_ref_t, mem_fun1_t, const_mem_fun1_t,
975         mem_fun1_ref_t, const_mem_fun1_ref_t): Remove overloads for void
976         return type, just an old HP/SGI workaround.
977         * testsuite/20_util/functional/binders.cc: Move to...
978         * testsuite/20_util/functional/binders/3113.cc: ...here.
979         * testsuite/20_util/functional/binders/1.cc: New.
980
981 2005-06-17  Jonathan Wakely  <redi@gcc.gnu.org>
982
983         * docs/html/21_strings/gotw29a.txt: Update code to corrected version.
984
985 2005-06-17  Jakub Jelinek  <jakub@redhat.com>
986             Benjamin Kosnik  <bkoz@redhat.com>
987
988         * config/abi/alpha-linux-gnu/baseline_symbols.txt: Update.
989         * config/abi/hppa-linux-gnu/baseline_symbols.txt: Same.
990         * config/abi/mips-linux-gnu/baseline_symbols.txt: Same.
991         * config/abi/sparc-linux-gnu/baseline_symbols.txt: Same.
992
993         * config/abi/alpha-freebsd5/baseline_symbols.txt: Remove.
994         * config/abi/i386-freebsd4/baseline_symbols.txt: Same.
995         * config/abi/i386-freebsd5/baseline_symbols.txt: Same.
996         * config/abi/sparc-freebsd5/baseline_symbols.txt: Same.
997
998         * config/abi/arm-linux-gnu/baseline_symbols.txt: Remove.
999         * config/abi/m68k-linux-gnu/baseline_symbols.txt: Same.
1000
1001 2005-06-17  Jakub Jelinek  <jakub@redhat.com>
1002
1003         * config/abi/ia64-linux-gnu/baseline_symbols.txt: Update.
1004         * config/abi/s390x-linux-gnu/baseline_symbols.txt: Update.
1005         * config/abi/s390-linux-gnu/baseline_symbols.txt: Update.
1006         * config/abi/x86_64-linux-gnu/baseline_symbols.txt: Update.
1007         * config/abi/x86_64-linux-gnu/32/baseline_symbols.txt: Update.
1008         * config/abi/powerpc-linux-gnu/baseline_symbols.txt: Update.
1009         * config/abi/i486-linux-gnu/baseline_symbols.txt: Update.
1010         * config/abi/i386-linux-gnu/baseline_symbols.txt: Update.
1011         * config/abi/powerpc64-linux-gnu/baseline_symbols.txt: New file.
1012         * config/abi/powerpc64-linux-gnu/32/baseline_symbols.txt: New file.
1013
1014 2005-06-16  Jakub Jelinek  <jakub@redhat.com>
1015
1016         * src/compatibility.cc: Include bits/c++config.h first.
1017         (_GLIBCXX_SYMVER_COMPATIBILITY): Define if _GLIBCXX_SYMVER
1018         and PIC are both defined.
1019         * include/bits/char_traits.h (char_traits::eq): Rename
1020         only if _GLIBCXX_SYMVER_COMPATIBILITY is defined.
1021
1022 2005-06-16  Jakub Jelinek  <jakub@redhat.com>
1023
1024         * acinclude.m4 ((GLIBCXX_ENABLE_SYMVERS): Rename _GLIBCXX_SIZE_T_IS_INT
1025         to _GLIBCXX_SIZE_T_IS_UINT.  Define _GLIBCXX_PTRDIFF_T_IS_INT.
1026         * configure: Regenerate.
1027         * config.h.in: Regenerate.
1028         * src/compatibility.cc (istream:ignore(streamsize)): Use
1029         _GLIBCXX_PTRDIFF_T_IS_INT instead of _GLIBCXX_SIZE_T_IS_INT.
1030         * config/abi/compatibility.h: Rename _GLIBCXX_SIZE_T_IS_INT
1031         to _GLIBCXX_SIZE_T_IS_UINT.  Use _GLIBCXX_PTRDIFF_T_IS_INT
1032         instead for symbols with streamsize arguments.
1033
1034 2005-06-16  Jakub Jelinek  <jakub@redhat.com>
1035
1036         * config/linker-map.gnu: Also export
1037         _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreE[il][il].
1038
1039 2005-06-15  Benjamin Kosnik  <bkoz@redhat.com>
1040
1041         * configure.ac (libtool_VERSION): To 6:6:0.
1042         * configure: Regenerate.
1043         * config/linker-map.gnu: Edit.
1044         * src/istream.cc: Move istream::ignore(streamsize) specializations...
1045         * src/compatibility.cc: ...here. New.
1046         * include/bits/char_traits.h (char_traits::eq): Rename when
1047         appropriate.
1048         * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Define _GLIBCXX_SIZE_T_IS_INT.
1049         Bump glibcxx_min_gnu_ld_version to 21590.
1050         * configure: Regenerate.
1051         * acconfig.h: Remove _GLIBCXX_ASM_SYMVER.
1052         * config.h.in: Regenerate.
1053         * src/Makefile.am (sources): Add compatibility.cc.
1054         * src/Makefile.in: Regenerate.
1055         * include/Makefile.am (host_headers_noinst): Add compatibility.h.
1056         * include/Makefile.in: Regenerate.
1057         * testsuite/testsuite_abi.h (symbol): Add data members.
1058         * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.5,
1059         GLIBCXX_3.4.6.  Remove deprecated versions. Do a better job
1060         version checking.
1061
1062 2005-06-15  Paolo Carlini  <pcarlini@suse.de>
1063
1064         * include/tr1/hashtable: Trivial formatting fixes.
1065         * include/tr1/unordered_map: Likewise.
1066         * include/tr1/unordered_set: Likewise.
1067
1068 2005-06-14  Tom Tromey  <tromey@redhat.com>
1069
1070         PR libgcj/19877:
1071         * configure, aclocal.m4: Rebuilt.
1072         * Makefile.in, include/Makefile.in, libmath/Makefile.in,
1073         libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in,
1074         testsuite/Makefile.in: Likewise.
1075
1076 2005-06-08  Benjamin Kosnik  <bkoz@redhat.com>
1077
1078         PR libstdc++/21955
1079         * include/std/std_sstream.h (basic_stringbuf::showmanyc): Add.
1080         Remove unnecessary this->_M_mode decoration.
1081         * include/bits/fstream.tcc: Adjust line spacing.        
1082         * testsuite/27_io/basic_streambuf/in_avail/char/1.cc: New, test
1083         base class behavior.
1084         * testsuite/27_io/basic_streambuf/in_avail/wchar_t/1.cc: Same.
1085         * testsuite/27_io/basic_stringbuf/in_avail/char/21955.cc: New.
1086         * testsuite/27_io/basic_stringbuf/in_avail/char/1.cc: Match
1087         filebuf behavior.
1088         * testsuite/27_io/basic_stringbuf/in_avail/wchar_t/1.cc: Same.
1089         * testsuite/27_io/basic_stringbuf/str/wchar_t/1.cc: Same.
1090         * testsuite/27_io/basic_stringbuf/str/char/1.cc: Same.
1091         * testsuite/27_io/basic_streambuf/in_avail/char/9701-3.cc: Move...
1092         * testsuite/27_io/basic_filebuf/in_avail/char/9701-3.cc: ...here.
1093         
1094 2005-06-07  Benjamin Kosnik  <bkoz@redhat.com>
1095
1096         * acinclude.m4 (GLIBCXX_ENABLE_C99): Use C++ compiler for complex
1097         tests.
1098         * configure: Regenerated.
1099
1100 2005-06-07  Adrian Straetling  <straetling@de.ibm.com>
1101
1102         * config/cpu/s390/atomicity.h: (__exchange_and_add, 
1103         __atomic_add): Use the builtins for atomic memory operations.
1104
1105 2005-06-06  Paolo Carlini  <pcarlini@suse.de>
1106
1107         PR libstdc++/21770 (cont: __gnu_debug::string)
1108         * include/debug/string: Use _Base typedefs for pointer, const_pointer,
1109         reference, const_reference, size_type, difference_type.
1110         * testsuite/21_strings/basic_string/2.cc: New.
1111
1112 2005-06-06  Paolo Carlini  <pcarlini@suse.de>
1113
1114         PR libstdc++/21770 (cont: debug-mode)
1115         * include/debug/deque: Use _Base typedefs for pointer, const_pointer,
1116         reference, const_reference.
1117         * include/debug/list: Likewise.
1118         * include/debug/map.h: Likewise.
1119         * include/debug/multimap.h: Likewise.
1120         * include/debug/multiset.h: Likewise.
1121         * include/debug/set.h: Likewise.
1122         * include/debug/vector: Likewise.
1123
1124 2005-06-06  Paolo Carlini  <pcarlini@suse.de>
1125
1126         Port from libstdcxx_so_7-branch:
1127         2004-09-24  Paolo Carlini  <pcarlini@suse.de>
1128                     Jonathan Wakely  <redi@gcc.gnu.org>
1129
1130         * include/bits/stl_list.h (list::list(size_type, value_type,
1131         const allocator_type&): Implement according to the letter of the
1132         standard, i.e., don't use two overloads, not equivalent in case
1133         of non default constructible T.
1134         (list::resize(size_type, const value_type&)): Fix the signature:
1135         according to the standard the second argument is by value; also,
1136         don't use two overloads.
1137         * include/bits/list.tcc (list::resize(size_type, const value_type&)):
1138         Adjust consistently the signature.
1139         * include/bits/stl_deque.h (deque::deque(size_type, value_type,
1140         const allocator_type&)): Likewise.
1141         (deque::resize(size_type, const value_type&)): Likewise.
1142         * include/bits/stl_vector.h (vector::vector(size_type, value_type,
1143         const allocator_type&)): Likewise.
1144         (vector::resize(size_type, const value_type&)): Likewise.
1145         * testsuite/testsuite_hooks.h: Add NonDefaultConstructible test type.
1146         * testsuite/23_containers/deque/explicit_instantiation/2.cc: New.
1147         * testsuite/23_containers/list/explicit_instantiation/2.cc: New.
1148         * testsuite/23_containers/map/explicit_instantiation/2.cc: New.
1149         * testsuite/23_containers/multimap/explicit_instantiation/2.cc: New.
1150         * testsuite/23_containers/multiset/explicit_instantiation/2.cc: New.
1151         * testsuite/23_containers/set/explicit_instantiation/2.cc: New.
1152         * testsuite/23_containers/vector/explicit_instantiation/2.cc: New.
1153
1154         * include/bits/deque.tcc: Minor formatting fix.
1155
1156 2005-06-06  Peter Doerfler  <doerfler@techinfo.rwth-aachen.de>
1157
1158         * include/bits/stl_function.h: ... and another one.
1159
1160 2005-06-06  Peter Doerfler  <doerfler@techinfo.rwth-aachen.de>
1161
1162         * include/bits/stl_function.h: Fix typo in comment.
1163
1164 2005-06-05  Paolo Carlini  <pcarlini@suse.de>
1165
1166         * acinclude.m4 ([GLIBCXX_ENABLE_C99]): Check clog, clogf, clogl
1167         too for ac_c99_complex.
1168         * configure: Regenerate.
1169
1170 2005-06-03  Paolo Carlini  <pcarlini@suse.de>
1171
1172         PR libstdc++/21770
1173         * include/bits/stl_deque.h: Add concept-check. In class _Deque_base
1174         rebind _Alloc to  _Tp_alloc_type, change _Deque_impl to inherit from
1175         the latter and add _M_get_Tp_allocator() which returns it. Use
1176         everywhere _M_get_Tp_allocator() instead of get_allocator().
1177         * include/bits/deque.tcc: Likewise, use _M_get_Tp_allocator().
1178         * include/bits/stl_list.h: Add concept-check. In class _List_base
1179         rebind _Alloc to _Tp_alloc_type and add _M_get_Tp_allocator(), which
1180         returns the allocator (of type _Node_alloc_type) converted to
1181         _Tp_alloc_type. Use everywhere _M_get_Tp_allocator() instead of
1182         get_allocator().
1183         * include/bits/list.tcc: Likewise, use _M_get_Tp_allocator().
1184         * include/bits/stl_vector.h: Add concept-check. In class _Vector_base
1185         rebind _Alloc to _Tp_alloc_type, change _Vector_impl to inherit from
1186         the latter and add _M_get_Tp_allocator() which returns it. Use
1187         everywhere _M_get_Tp_allocator() instead of get_allocator().
1188         * include/bits/vector.tcc: Likewise, use _M_get_Tp_allocator().
1189         * include/bits/stl_map.h: Add concept-check. Rebind _Alloc to
1190         _Pair_alloc_type and use it for _Rb_tree.
1191         * include/bits/stl_multimap.h: Likewise.
1192         * include/bits/stl_multiset.h: Add concept-check. Rebind _Alloc to
1193         _Key_alloc_type and use it for _Rb_tree.
1194         * include/bits/stl_set.h: Likewise.
1195         * include/bits/basic_string.h: Rebind _Alloc to _CharT_alloc_type and
1196         use it for the allocator typedefs.
1197         * testsuite/21_strings/basic_string/1.cc: New.
1198         * testsuite/23_containers/deque/explicit_instantiation.cc: Move to...
1199         * testsuite/23_containers/deque/explicit_instantiation/1.cc: ... here.
1200         * testsuite/23_containers/deque/explicit_instantiation/3.cc: New.
1201         * testsuite/23_containers/list/explicit_instantiation.cc: Move to...
1202         * testsuite/23_containers/list/explicit_instantiation/1.cc: ... here.
1203         * testsuite/23_containers/list/explicit_instantiation/3.cc: New.
1204         * testsuite/23_containers/map/explicit_instantiation.cc: Move to...
1205         * testsuite/23_containers/map/explicit_instantiation/1.cc: ... here.
1206         * testsuite/23_containers/map/explicit_instantiation/3.cc: New.
1207         * testsuite/23_containers/multimap/explicit_instantiation.cc: Move to...
1208         * testsuite/23_containers/multimap/explicit_instantiation/1.cc: .. here.
1209         * testsuite/23_containers/multimap/explicit_instantiation/3.cc: New.
1210         * testsuite/23_containers/multiset/explicit_instantiation.cc: Move to...
1211         * testsuite/23_containers/multiset/explicit_instantiation/1.cc: .. here.
1212         * testsuite/23_containers/multiset/explicit_instantiation/3.cc: New.
1213         * testsuite/23_containers/set/explicit_instantiation.cc: Move to...
1214         * testsuite/23_containers/set/explicit_instantiation/1.cc: .. here.
1215         * testsuite/23_containers/set/explicit_instantiation/3.cc: New.
1216         * testsuite/23_containers/vector/explicit_instantiation.cc: Move to...
1217         * testsuite/23_containers/vector/explicit_instantiation/1.cc: ... here.
1218         * testsuite/23_containers/vector/explicit_instantiation/3.cc: New.
1219
1220 2005-06-02  Nathan Sidwell  <nathan@codesourcery.com>
1221
1222         PR c++/21280
1223         * testsuite/27_io/ios_base/cons/assign_neg.cc: Adjust expected errors.
1224         * testsuite/27_io/ios_base/cons/copy_neg.cc: Likewise.
1225
1226 2005-05-31  Paolo Carlini  <pcarlini@suse.de>
1227
1228         PR libstdc++/20534 (contd)
1229         * include/debug/macros.h: Add _GLIBCXX_DEBUG_ABORT, using
1230         __gnu_debug::__fancy_abort.
1231         * src/debug.cc: Define the latter.
1232         * include/debug/debug.h: Use _GLIBCXX_DEBUG_ABORT instead of
1233         assert.
1234         * config/linker-map.gnu (__gnu_debug::__fancy_abort): Add.
1235
1236 2005-05-30  Paolo Carlini  <pcarlini@suse.de>
1237
1238         * include/std/std_complex.h (log(const complex<_Tp>&)): When
1239         _GLIBCXX_USE_C99_COMPLEX, forward to __builtin_clog/clogf/clogl.
1240
1241 2005-05-28  Paolo Carlini  <pcarlini@suse.de>
1242
1243         Revert:
1244         2005-05-18  Paolo Carlini  <pcarlini@suse.de>
1245                     Nathan Myers  <ncm@cantrip.org>
1246
1247         PR libstdc++/19495
1248         * include/bits/basic_string.h (_Raw_bytes_alloc): Rebind to
1249         size_type instead of char and rename to _Raw_alloc.
1250         * include/bits/basic_string.tcc (_Rep::_M_destroy, _Rep::_S_create):
1251         Use the above.
1252         * src/bitmap_allocator.cc: Add instantiation for size_type.
1253         * src/mt_allocator.cc: Likewise.
1254         * src/pool_allocator.cc: Likewise.
1255         * include/ext/array_allocator.h: Tweak slightly, avoid assuming
1256         the existence of an _Array::begin() and size() members.
1257         * testsuite/ext/array_allocator/2.cc: Tweak to use an allocator
1258         of size_type, instead of char, thus avoiding problems with
1259         rebinds, not treated correctly by array_allocator.
1260
1261 2005-05-27  Paolo Carlini  <pcarlini@suse.de>
1262
1263         * docs/html/abi.html: Mention 3.4.0 as the current baseline; add
1264         a notice about the configure options.
1265
1266 2005-05-27  Mark Mitchell  <mark@codesourcery.com>
1267
1268         * docs/html/test.html: Mention PCH_CXXFLAGS.
1269         * testsuite/lib/libstdc++.exp: Set PCH_CXXFLAGS by probing for an
1270         available stcd++.h PCH.
1271         * testsuite/libstdc++-dg/normal.exp: Use PCH_CXXFLAGS.
1272
1273 2005-05-27  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
1274
1275         * src/misc-inst.cc: Remove unnecessary included files.
1276
1277 2005-05-27  Benjamin Kosnik  <bkoz@redhat.com>
1278
1279         PR libstdc++/21674
1280         * include/bits/c++config: Remove extern template use when in debug
1281         mode, disable for non-weak systems.
1282         
1283 2005-05-27  Benjamin Kosnik  <bkoz@redhat.com>
1284
1285         PR libstdc++/20534 
1286         * include/debug/debug.h: Forwarding header, that pulls in details
1287         only if in debug mode.
1288         * include/debug/macros.h: ...transfer all the internal macros here.
1289         * include/debug/functions.h: ...transfer all the functions here.
1290         * include/debug/safe_iterator.h: Add functions.h, macros.h includes.
1291         * include/debug/safe_sequence.h: Same.
1292         * include/debug/vector: Tweak.
1293         * include/Makefile.am (debug_headers): Add new includes.
1294         * include/Makefile.in: Regenerate.
1295         * testsuite/17_intro/no_assert_neg.cc: Add.
1296
1297         * include/ext/hash_set: Add debug mode include.
1298         * include/ext/hash_map: Same.
1299         * include/debug/hash_map: Fix included files to match actual files.
1300         * include/debug/hash_set: Same.
1301                 
1302 2005-05-26  Paolo Carlini  <pcarlini@suse.de>
1303
1304         PR libstdc++/13943
1305         * include/c_std/std_cstdlib.h: Do not open code llabs and lldiv,
1306         available when _GLIBCXX_USE_C99 is defined.
1307         * testsuite/26_numerics/cstdlib/13943.cc: New.
1308
1309         * acinclude.m4 ([GLIBCXX_ENABLE_C99]): For completeness, check
1310         also strtoll and strtoull for ac_c99_stdlib.
1311         * configure: Regenerate.
1312
1313 2005-05-25  Benjamin Kosnik  <bkoz@redhat.com>
1314
1315         * config/linker-map.gnu: Add linkage support for no extern templates.
1316         (std::ios_base::_M_call_callbacks): Add.
1317         (std::ios_base::_M_dispose_callbacks): Add.
1318         (std::locale::facet::_S_get_c_name): Add.
1319         (std::__copy_streambufs): Add.
1320         * configure.ac (libtool_VERSION): To 6:5:0.
1321         * configure: Regenerate.
1322         * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.5.
1323         
1324 2005-05-25  Paolo Carlini  <pcarlini@suse.de>
1325
1326         * include/bits/basic_string.h (_Rep::_M_set_length_and_sharable):
1327         Use, consistently, traits_type::assign.
1328
1329 2005-05-25  Paolo Carlini  <pcarlini@suse.de>
1330
1331         * config/cpu/alpha/atomicity.h: Use the builtins for
1332         atomic memory operations.
1333         * config/cpu/powerpc/atomicity.h: Likewise.
1334         * config/cpu/ia64/atomicity.h: Do not include ia64intrin.h.
1335
1336 2005-05-24  Paolo Carlini  <pcarlini@suse.de>
1337
1338         * testsuite/25_algorithms/equal.cc: Move to...
1339         * testsuite/25_algorithms/equal: ... here.
1340         * testsuite/25_algorithms/lower_bound.cc: Move to...
1341         * testsuite/25_algorithms/lower_bound: ... here.
1342
1343 2005-05-24  Paolo Carlini  <pcarlini@suse.de>
1344
1345         Port from libstdcxx_so_7-branch:
1346         2005-20-05  Chris Jefferson  <chris@bubblescope.net>
1347
1348         * testsuite/25_algorithms/heap.cc: Move to...
1349         * testsuite/25_algorithms/heap/heap.cc: ...here.
1350         * testsuite/25_algorithms/partition.cc: Move to...
1351         * testsuite/25_algorithms/partition/partition.cc: ...here.
1352
1353         2005-03-29  Christopher Jefferson  <chris@bubblescope.net>
1354
1355         * testsuite/25_algorithms/includes/1.cc: Add tests.
1356         * testsuite/25_algorithms/search/1.cc: Likewise.
1357         * testsuite/25_algorithms/unique_copy/1.cc: Likewise.
1358         * testsuite/25_algorithms/swap_ranges/1.cc: New.
1359         * testsuite/25_algorithms/swap_ranges/check_type.cc: New.
1360         * testsuite/25_algorithms/rotate.cc: Move to...
1361         * testsuite/25_algorithms/rotate/rotate.cc: ... here.
1362         * testsuite/25_algorithms/rotate/1.cc: New.
1363         * testsuite/25_algorithms/rotate/check_type.cc: New.
1364         * testsuite/25_algorithms/search_n/iterator.cc: Fix typo.
1365
1366         2005-03-14  Christopher Jefferson  <chris@bubblescope.net>
1367
1368         * include/bits/stl_algo.h (replace_copy, replace_copy_if):
1369         Don't assume that __new_value and *__first are convertible to
1370         each other.     
1371
1372         * testsuite/25_algorithms/find/1.cc: New.
1373         * testsuite/25_algorithms/find/check_type.cc: New.
1374         * testsuite/25_algorithms/find_if/1.cc: New.
1375         * testsuite/25_algorithms/find_if/check_type.cc: New.
1376         * testsuite/25_algorithms/replace/1.cc: New.
1377         * testsuite/25_algorithms/replace/check_type.cc: New.
1378         * testsuite/25_algorithms/replace_if/1.cc: New.
1379         * testsuite/25_algorithms/replace_if/check_type.cc: New.
1380         * testsuite/25_algorithms/replace_copy/1.cc: New.
1381         * testsuite/25_algorithms/replace_copy/check_type.cc: New.
1382         * testsuite/25_algorithms/replace_copy_if/1.cc: New.
1383         * testsuite/25_algorithms/replace_copy_if/check_type.cc: New.
1384         * testsuite/25_algorithms/remove/1.cc: New.
1385         * testsuite/25_algorithms/remove/check_type.cc: New.
1386         * testsuite/25_algorithms/remove_if/1.cc: New.
1387         * testsuite/25_algorithms/remove_if/check_type.cc: New.
1388         * testsuite/25_algorithms/count/1.cc: New.
1389         * testsuite/25_algorithms/count/check_type.cc: New.
1390         * testsuite/25_algorithms/count_if/1.cc: New.
1391         * testsuite/25_algorithms/count_if/check_type.cc: New.
1392
1393         2005-02-27  Christopher Jefferson  <chris@bubblescope.net>
1394                     Paolo Carlini  <pcarlini@suse.de>
1395
1396         * testsuite/ext/is_heap/check_type.cc: New.
1397         
1398         2005-02-27  Paolo Carlini  <pcarlini@suse.de>
1399
1400         * testsuite/ext/is_heap/1.cc: New.
1401
1402         2005-02-01  Christopher Jefferson  <chris@bubblescope.net>
1403
1404         * testsuite/ext/median.cc: New.
1405         * testsuite/25_algorithms/adjacent_find/1.cc: New.
1406         * testsuite/25_algorithms/adjacent_find/check_type.cc: New.
1407         * testsuite/25_algorithms/search/1.cc: New.
1408         * testsuite/25_algorithms/search/check_type.cc: New.
1409         * testsuite/25_algorithms/unique_copy/1.cc: New.
1410         * testsuite/25_algorithms/unique_copy/check_type.cc: New.
1411         * testsuite/25_algorithms/partial_sort/1.cc: New.
1412         * testsuite/25_algorithms/partial_sort/check_type.cc: New.
1413         * testsuite/25_algorithms/partial_sort_copy/1.cc: New.
1414         * testsuite/25_algorithms/partial_sort_copy/check_type.cc: New.
1415         * testsuite/25_algorithms/lower_bound/1.cc: New.
1416         * testsuite/25_algorithms/lower_bound/check_type.cc: New.
1417         * testsuite/25_algorithms/upper_bound/1.cc: New.
1418         * testsuite/25_algorithms/upper_bound/check_type.cc: New.
1419         * testsuite/25_algorithms/merge/1.cc: New.
1420         * testsuite/25_algorithms/merge/check_type.cc: New.
1421         * testsuite/25_algorithms/inplace_merge/1.cc: New.
1422         * testsuite/25_algorithms/inplace_merge/check_type.cc: New.
1423         * testsuite/25_algorithms/stable_sort/1.cc: New.
1424         * testsuite/25_algorithms/stable_sort/check_type.cc: New.
1425         * testsuite/25_algorithms/nth_element/1.cc: New.
1426         * testsuite/25_algorithms/nth_element/check_type.cc: New.
1427         * testsuite/25_algorithms/equal_range/1.cc: New.
1428         * testsuite/25_algorithms/equal_range/check_type.cc: New.
1429         * testsuite/25_algorithms/binary_search/1.cc: New.
1430         * testsuite/25_algorithms/binary_search/check_type.cc: New.
1431         * testsuite/25_algorithms/includes/1.cc: New.
1432         * testsuite/25_algorithms/includes/check_type.cc: New.
1433         * testsuite/25_algorithms/set_union/1.cc: New.
1434         * testsuite/25_algorithms/set_union/check_type.cc: New.
1435         * testsuite/25_algorithms/set_intersection/1.cc: New.
1436         * testsuite/25_algorithms/set_intersection/check_type.cc: New.
1437         * testsuite/25_algorithms/set_difference/1.cc: New.
1438         * testsuite/25_algorithms/set_difference/check_type.cc: New.
1439         * testsuite/25_algorithms/set_symmetric_difference/1.cc: New.
1440         * testsuite/25_algorithms/set_symmetric_difference/check_type.cc: New.  
1441         * testsuite/25_algorithms/min_element/1.cc: New.
1442         * testsuite/25_algorithms/min_element/check_type.cc: New.
1443         * testsuite/25_algorithms/max_element/1.cc: New.
1444         * testsuite/25_algorithms/max_element/check_type.cc: New.
1445         * testsuite/25_algorithms/prev_permutation/1.cc: New.
1446         * testsuite/25_algorithms/prev_permutation/check_type.cc: New.
1447         * testsuite/25_algorithms/next_permutation/1.cc: New.
1448         * testsuite/25_algorithms/next_permutation/check_type.cc: New.
1449         * testsuite/25_algorithms/find_first_of/1.cc: New.
1450         * testsuite/25_algorithms/find_first_of/check_type.cc: New.
1451         * testsuite/25_algorithms/find_end/1.cc: New.
1452         * testsuite/25_algorithms/find_end/check_type.cc: New.
1453         * testsuite/25_algorithms/equal/check_type.cc: Insert iterator type.
1454         * testsuite/25_algorithms/lexicographical_compare/check_type.cc:
1455         Likewise.
1456
1457         2005-01-10  Christopher Jefferson <chris@bubblescope.net>
1458
1459         * testsuite/25_algorithms/lexicographical_compare/check_type.cc: New.
1460         * testsuite/25_algorithms/lexicographical_compare/1.cc: Likewise.
1461         * testsuite/25_algorithms/mismatch/check_type.cc: Likewise.
1462         * testsuite/25_algorithms/mismatch/1.cc: Likewise.
1463         * testsuite/25_algorithms/equal/check_type.cc: New.
1464         * testsuite/25_algorithms/equal/1.cc: New.
1465
1466 2005-05-24  Benjamin Kosnik  <bkoz@redhat.com>
1467
1468         * include/bits/allocator.h: Change ___glibcxx_base_allocator to
1469         __glibcxx_base_allocator.
1470         * config/allocator/bitmap_allocator_base.h: Same.
1471         * config/allocator/malloc_allocator_base.h: Same.
1472         * config/allocator/mt_allocator_base.h: Same.
1473         * config/allocator/new_allocator_base.h: Same.
1474         * config/allocator/pool_allocator_base.h: Same.
1475
1476 2005-05-24  Jonathan Wakely  <redi@gcc.gnu.org>
1477
1478         * include/debug/string (class basic_string): Add missing
1479         default template arguments; provide typedefs for char
1480         and wchar_t.
1481         (operator[]): Allow s[s.size()] in debug mode, but not
1482         pedantic mode.
1483
1484 2005-05-24  Paolo Carlini  <pcarlini@suse.de>
1485
1486         Port from libstdcxx_so_7-branch:
1487         2005-04-25  Christopher Jefferson  <chris@bubblescope.net>
1488
1489         * include/bits/stl_algo.h (count): Correct concept checks.
1490         (search_n) : Likewise.
1491         * testsuite/25_algorithms/search_n/check_type.cc: New.
1492
1493         * testsuite/testsuite_iterators.h
1494         (random_access_iterator_wrapper::operator+): Move out of
1495         class to external function, and add symmetric version.
1496
1497         2005-03-14  Christopher Jefferson  <chris@bubblescope.net>
1498
1499         * testsuite/testsuite_iterators.h (WritableObject::WritableObject):
1500         Add const.
1501         
1502         2005-02-01  Christopher Jefferson  <chris@bubblescope.net>
1503
1504         * testsuite/testsuite_iterators.h (random_access_iterator_wrapper::
1505         operator--): Fix typo.
1506         (OutputContainer::OutputContainer): Correct zeroing array.
1507         (WritableObject::operator==): Fix typo.
1508         (WritableObject::operator=): make operator= templated 
1509         to allow differing types to be assigned.
1510         (WritableObject::operator++): Fix checking if iterator is
1511         written to multiple times.
1512         (random_access_iterator_wrapper::operator+): Add const.
1513         (random_access_iterator_wrapper::operator-): Likewise.
1514         (random_access_iterator_wrapper::operator[]): Add dereference.
1515
1516 2005-05-23  Jonathan Wakely  <redi@gcc.gnu.org>
1517
1518         * docs/html/debug.html: Explain that _GLIBXX_DEBUG_PEDANTIC
1519         had to be defined for pedantic mode in 3.4 and 4.0.0.
1520
1521 2005-05-20  Jan Beulich  <jbeulich@novell.com>
1522
1523         * libmath/stubs.c: Also implement fabsf/fabsl if not present in the
1524         system libraries.
1525
1526 2005-05-20  Paolo Carlini  <pcarlini@suse.de>
1527
1528         * include/bits/stl_algo.h (__rotate<_RandomAccessIterator>):
1529         Don't qualify __tmp as const, _ValueType is not necessarily
1530         Assignable.
1531         * include/bits/stl_algobase.h (swap, __iter_swap<false>):
1532         Likewise, as an harmless extension.
1533
1534 2005-05-19  Richard Henderson  <rth@redhat.com>
1535
1536         * libsupc++/unwind-cxx.h: Revert gcc_unreachable change.
1537
1538 2005-05-19  Jonathan Wakely  <redi@gcc.gnu.org>
1539
1540         * include/bits/basic_string.h (operator[]): Allow s[s.size()] in
1541         debug mode, but not pedantic mode.
1542
1543 2005-05-19  Jan Beulich  <jbeulich@novell.com>
1544
1545         * libsupc++/unwind-cxx.h: Include cstdlib.
1546         (gcc_unreachable): #define.
1547         * libsupc++/eh_personality.cc (gcc_unreachable): Remove #define.
1548
1549 2005-05-18  Paolo Carlini  <pcarlini@suse.de>
1550             Nathan Myers  <ncm@cantrip.org>
1551
1552         PR libstdc++/19495
1553         * include/bits/basic_string.h (_Raw_bytes_alloc): Rebind to
1554         size_type instead of char and rename to _Raw_alloc.
1555         * include/bits/basic_string.tcc (_Rep::_M_destroy, _Rep::_S_create):
1556         Use the above.
1557         * src/bitmap_allocator.cc: Add instantiation for size_type.
1558         * src/mt_allocator.cc: Likewise.
1559         * src/pool_allocator.cc: Likewise.
1560         * include/ext/array_allocator.h: Tweak slightly, avoid assuming
1561         the existence of an _Array::begin() and size() members.
1562         * testsuite/ext/array_allocator/2.cc: Tweak to use an allocator
1563         of size_type, instead of char, thus avoiding problems with
1564         rebinds, not treated correctly by array_allocator.
1565
1566 2005-05-18  Paolo Carlini  <pcarlini@suse.de>
1567
1568         * testsuite/22_locale/ctype/is/char/2.cc: Adjust dg-require-namedlocale.
1569         * testsuite/22_locale/ctype/is/wchar_t/2.cc: Likewise.
1570         * testsuite/22_locale/time_get/get_year/char/wrapped_env.cc: Add
1571         missing dg-require-namedlocale.
1572         * testsuite/22_locale/time_get/get_year/char/wrapped_locale.cc:
1573         Likewise.
1574         * testsuite/22_locale/time_get/get_year/wchar_t/wrapped_env.cc:
1575         Likewise.
1576         * testsuite/22_locale/time_get/get_year/wchar_t/wrapped_locale.cc:
1577         Likewise.
1578
1579 2005-05-18  Paolo Carlini  <pcarlini@suse.de>
1580
1581         * testsuite/testsuite_hooks.cc: Remove try_named_locale.
1582         * testsuite/testsuite_hooks.h: Remove try_named_locale.
1583         * testsuite/lib/libstdc++.exp (check_v3_target_namedlocale): New.
1584         * testsuite/lib/dg-options.exp (dg-require-namedlocale): New, uses
1585         the above.
1586         * testsuite/22_locale/codecvt/always_noconv/char/wrapped_env.cc: Use
1587         dg-require-namedlocale.
1588         * testsuite/22_locale/codecvt/always_noconv/char/wrapped_locale.cc:
1589         Likewise.
1590         * testsuite/22_locale/codecvt/always_noconv/wchar_t/2.cc: Likewise.
1591         * testsuite/22_locale/codecvt/always_noconv/wchar_t/3.cc: Likewise.
1592         * testsuite/22_locale/codecvt/always_noconv/wchar_t/4.cc: Likewise.
1593         * testsuite/22_locale/codecvt/always_noconv/wchar_t/wrapped_env.cc: 
1594         Likewise.
1595         * testsuite/22_locale/codecvt/always_noconv/wchar_t/wrapped_locale.cc:
1596         Likewise.
1597         * testsuite/22_locale/codecvt/encoding/char/wrapped_env.cc: Likewise.
1598         * testsuite/22_locale/codecvt/encoding/char/wrapped_locale.cc: Likewise.
1599         * testsuite/22_locale/codecvt/encoding/wchar_t/2.cc: Likewise.
1600         * testsuite/22_locale/codecvt/encoding/wchar_t/3.cc: Likewise.
1601         * testsuite/22_locale/codecvt/encoding/wchar_t/4.cc: Likewise.
1602         * testsuite/22_locale/codecvt/encoding/wchar_t/wrapped_env.cc: Likewise.
1603         * testsuite/22_locale/codecvt/encoding/wchar_t/wrapped_locale.cc:
1604         Likewise.
1605         * testsuite/22_locale/codecvt/in/char/wrapped_env.cc: Likewise.
1606         * testsuite/22_locale/codecvt/in/char/wrapped_locale.cc: Likewise.
1607         * testsuite/22_locale/codecvt/in/wchar_t/2.cc: Likewise.
1608         * testsuite/22_locale/codecvt/in/wchar_t/3.cc: Likewise.
1609         * testsuite/22_locale/codecvt/in/wchar_t/4.cc: Likewise.
1610         * testsuite/22_locale/codecvt/in/wchar_t/7.cc: Likewise. 
1611         * testsuite/22_locale/codecvt/in/wchar_t/8.cc: Likewise.
1612         * testsuite/22_locale/codecvt/in/wchar_t/9.cc: Likewise.
1613         * testsuite/22_locale/codecvt/in/wchar_t/wrapped_env.cc: Likewise. 
1614         * testsuite/22_locale/codecvt/in/wchar_t/wrapped_locale.cc: Likewise.    
1615         * testsuite/22_locale/codecvt/length/char/wrapped_env.cc: Likewise. 
1616         * testsuite/22_locale/codecvt/length/char/wrapped_locale.cc: Likewise.    
1617         * testsuite/22_locale/codecvt/length/wchar_t/2.cc: Likewise.   
1618         * testsuite/22_locale/codecvt/length/wchar_t/3.cc: Likewise.   
1619         * testsuite/22_locale/codecvt/length/wchar_t/4.cc: Likewise.   
1620         * testsuite/22_locale/codecvt/length/wchar_t/7.cc: Likewise.   
1621         * testsuite/22_locale/codecvt/length/wchar_t/wrapped_env.cc: Likewise.      
1622         * testsuite/22_locale/codecvt/length/wchar_t/wrapped_locale.cc:
1623         Likewise.
1624         * testsuite/22_locale/codecvt/max_length/char/wrapped_env.cc: Likewise.
1625         * testsuite/22_locale/codecvt/max_length/char/wrapped_locale.cc:
1626         Likewise.  
1627         * testsuite/22_locale/codecvt/max_length/wchar_t/2.cc: Likewise.    
1628         * testsuite/22_locale/codecvt/max_length/wchar_t/3.cc: Likewise.    
1629         * testsuite/22_locale/codecvt/max_length/wchar_t/4.cc: Likewise.    
1630         * testsuite/22_locale/codecvt/max_length/wchar_t/wrapped_env.cc:
1631         Likewise.  
1632         * testsuite/22_locale/codecvt/max_length/wchar_t/wrapped_locale.cc:
1633         Likewise.
1634         * testsuite/22_locale/codecvt/out/char/wrapped_env.cc: Likewise.    
1635         * testsuite/22_locale/codecvt/out/char/wrapped_locale.cc: Likewise. 
1636         * testsuite/22_locale/codecvt/out/wchar_t/2.cc: Likewise.  
1637         * testsuite/22_locale/codecvt/out/wchar_t/3.cc: Likewise.  
1638         * testsuite/22_locale/codecvt/out/wchar_t/4.cc: Likewise.  
1639         * testsuite/22_locale/codecvt/out/wchar_t/7.cc: Likewise.  
1640         * testsuite/22_locale/codecvt/out/wchar_t/wrapped_env.cc: Likewise. 
1641         * testsuite/22_locale/codecvt/out/wchar_t/wrapped_locale.cc: Likewise. 
1642         * testsuite/22_locale/codecvt/unshift/char/wrapped_env.cc: Likewise.   
1643         * testsuite/22_locale/codecvt/unshift/char/wrapped_locale.cc: Likewise.
1644         * testsuite/22_locale/codecvt/unshift/wchar_t/2.cc: Likewise.    
1645         * testsuite/22_locale/codecvt/unshift/wchar_t/3.cc: Likewise.    
1646         * testsuite/22_locale/codecvt/unshift/wchar_t/4.cc: Likewise.    
1647         * testsuite/22_locale/codecvt/unshift/wchar_t/wrapped_env.cc: Likewise.
1648         * testsuite/22_locale/codecvt/unshift/wchar_t/wrapped_locale.cc:
1649         Likewise.
1650         * testsuite/22_locale/collate/compare/char/1.cc: Likewise.  
1651         * testsuite/22_locale/collate/compare/char/2.cc: Likewise.  
1652         * testsuite/22_locale/collate/compare/char/3.cc: Likewise.  
1653         * testsuite/22_locale/collate/compare/char/wrapped_env.cc: Likewise.        
1654         * testsuite/22_locale/collate/compare/char/wrapped_locale.cc: Likewise.     
1655         * testsuite/22_locale/collate/compare/wchar_t/1.cc: Likewise.     
1656         * testsuite/22_locale/collate/compare/wchar_t/2.cc: Likewise.     
1657         * testsuite/22_locale/collate/compare/wchar_t/3.cc: Likewise.     
1658         * testsuite/22_locale/collate/compare/wchar_t/wrapped_env.cc: Likewise.
1659         * testsuite/22_locale/collate/compare/wchar_t/wrapped_locale.cc:
1660         Likewise.  
1661         * testsuite/22_locale/collate/hash/char/2.cc: Likewise.     
1662         * testsuite/22_locale/collate/hash/char/wrapped_env.cc: Likewise.   
1663         * testsuite/22_locale/collate/hash/char/wrapped_locale.cc: Likewise.        
1664         * testsuite/22_locale/collate/hash/wchar_t/2.cc: Likewise.  
1665         * testsuite/22_locale/collate/hash/wchar_t/wrapped_env.cc: Likewise.
1666         * testsuite/22_locale/collate/hash/wchar_t/wrapped_locale.cc: Likewise.     
1667         * testsuite/22_locale/collate/transform/char/2.cc: Likewise.     
1668         * testsuite/22_locale/collate/transform/char/3.cc: Likewise.     
1669         * testsuite/22_locale/collate/transform/char/wrapped_env.cc: Likewise.      
1670         * testsuite/22_locale/collate/transform/char/wrapped_locale.cc:
1671         Likewise.
1672         * testsuite/22_locale/collate/transform/wchar_t/2.cc: Likewise. 
1673         * testsuite/22_locale/collate/transform/wchar_t/3.cc: Likewise. 
1674         * testsuite/22_locale/collate/transform/wchar_t/wrapped_env.cc:
1675         Likewise.
1676         * testsuite/22_locale/collate/transform/wchar_t/wrapped_locale.cc:
1677         Likewise.
1678         * testsuite/22_locale/collate_byname/named_equivalence.cc: Likewise.
1679         * testsuite/22_locale/ctype/cons/char/wrapped_env.cc: Likewise.    
1680         * testsuite/22_locale/ctype/cons/char/wrapped_locale.cc: Likewise. 
1681         * testsuite/22_locale/ctype/is/char/2.cc: Likewise. 
1682         * testsuite/22_locale/ctype/is/char/wrapped_env.cc: Likewise.      
1683         * testsuite/22_locale/ctype/is/char/wrapped_locale.cc: Likewise.  
1684         * testsuite/22_locale/ctype/is/wchar_t/2.cc: Likewise.   
1685         * testsuite/22_locale/ctype/is/wchar_t/wrapped_env.cc: Likewise.  
1686         * testsuite/22_locale/ctype/is/wchar_t/wrapped_locale.cc: Likewise.
1687         * testsuite/22_locale/ctype/narrow/char/wrapped_env.cc: Likewise.
1688         * testsuite/22_locale/ctype/narrow/char/wrapped_locale.cc: Likewise.        
1689         * testsuite/22_locale/ctype/narrow/wchar_t/3.cc: Likewise. 
1690         * testsuite/22_locale/ctype/narrow/wchar_t/wrapped_env.cc: Likewise.        
1691         * testsuite/22_locale/ctype/narrow/wchar_t/wrapped_locale.cc: Likewise.
1692         * testsuite/22_locale/ctype/scan/char/wrapped_env.cc: Likewise.   
1693         * testsuite/22_locale/ctype/scan/char/wrapped_locale.cc: Likewise. 
1694         * testsuite/22_locale/ctype/scan/wchar_t/wrapped_env.cc: Likewise. 
1695         * testsuite/22_locale/ctype/scan/wchar_t/wrapped_locale.cc: Likewise.       
1696         * testsuite/22_locale/ctype/to/char/wrapped_env.cc: Likewise.       
1697         * testsuite/22_locale/ctype/to/char/wrapped_locale.cc: Likewise.    
1698         * testsuite/22_locale/ctype/to/wchar_t/wrapped_env.cc: Likewise.    
1699         * testsuite/22_locale/ctype/to/wchar_t/wrapped_locale.cc: Likewise. 
1700         * testsuite/22_locale/ctype/widen/char/wrapped_env.cc: Likewise.    
1701         * testsuite/22_locale/ctype/widen/char/wrapped_locale.cc: Likewise. 
1702         * testsuite/22_locale/ctype/widen/wchar_t/2.cc: Likewise.   
1703         * testsuite/22_locale/ctype/widen/wchar_t/3.cc: Likewise.   
1704         * testsuite/22_locale/ctype/widen/wchar_t/wrapped_env.cc: Likewise.
1705         * testsuite/22_locale/ctype/widen/wchar_t/wrapped_locale.cc: Likewise.
1706         * testsuite/22_locale/facet/2.cc: Likewise.
1707         * testsuite/22_locale/locale/cons/12352.cc: Likewise.
1708         * testsuite/22_locale/locale/cons/12438.cc: Likewise.
1709         * testsuite/22_locale/locale/cons/12658_thread-1.cc: Likewise. 
1710         * testsuite/22_locale/locale/cons/12658_thread-2.cc: Likewise. 
1711         * testsuite/22_locale/locale/cons/2.cc: Likewise.
1712         * testsuite/22_locale/locale/cons/4.cc: Likewise.
1713         * testsuite/22_locale/locale/cons/5.cc: Likewise.
1714         * testsuite/22_locale/locale/cons/7.cc: Likewise.
1715         * testsuite/22_locale/locale/cons/7222-env.cc: Likewise.  
1716         * testsuite/22_locale/locale/global_locale_objects/14071.cc: Likewise.  
1717         * testsuite/22_locale/locale/global_locale_objects/2.cc: Likewise.
1718         * testsuite/22_locale/messages/members/char/1.cc: Likewise.
1719         * testsuite/22_locale/messages/members/char/2.cc: Likewise.
1720         * testsuite/22_locale/messages/members/char/3.cc: Likewise.
1721         * testsuite/22_locale/messages/members/char/wrapped_env.cc: Likewise.   
1722         * testsuite/22_locale/messages/members/char/wrapped_locale.cc: Likewise.
1723         * testsuite/22_locale/messages_byname/named_equivalence.cc: Likewise.   
1724         * testsuite/22_locale/money_get/get/char/1.cc: Likewise.    
1725         * testsuite/22_locale/money_get/get/char/10.cc: Likewise.   
1726         * testsuite/22_locale/money_get/get/char/11.cc: Likewise.   
1727         * testsuite/22_locale/money_get/get/char/11528.cc: Likewise.
1728         * testsuite/22_locale/money_get/get/char/12.cc: Likewise.   
1729         * testsuite/22_locale/money_get/get/char/13.cc: Likewise.   
1730         * testsuite/22_locale/money_get/get/char/15.cc: Likewise.   
1731         * testsuite/22_locale/money_get/get/char/16.cc: Likewise.   
1732         * testsuite/22_locale/money_get/get/char/17.cc: Likewise.   
1733         * testsuite/22_locale/money_get/get/char/18.cc: Likewise.   
1734         * testsuite/22_locale/money_get/get/char/2.cc: Likewise.    
1735         * testsuite/22_locale/money_get/get/char/3.cc: Likewise.    
1736         * testsuite/22_locale/money_get/get/char/4.cc: Likewise.    
1737         * testsuite/22_locale/money_get/get/char/wrapped_env.cc: Likewise. 
1738         * testsuite/22_locale/money_get/get/char/wrapped_locale.cc: Likewise.  
1739         * testsuite/22_locale/money_get/get/wchar_t/1.cc: Likewise. 
1740         * testsuite/22_locale/money_get/get/wchar_t/10.cc: Likewise.      
1741         * testsuite/22_locale/money_get/get/wchar_t/11.cc: Likewise.      
1742         * testsuite/22_locale/money_get/get/wchar_t/11528.cc: Likewise.
1743         * testsuite/22_locale/money_get/get/wchar_t/12.cc: Likewise.      
1744         * testsuite/22_locale/money_get/get/wchar_t/13.cc: Likewise.      
1745         * testsuite/22_locale/money_get/get/wchar_t/15.cc: Likewise.      
1746         * testsuite/22_locale/money_get/get/wchar_t/16.cc: Likewise.      
1747         * testsuite/22_locale/money_get/get/wchar_t/17.cc: Likewise.      
1748         * testsuite/22_locale/money_get/get/wchar_t/18.cc: Likewise.      
1749         * testsuite/22_locale/money_get/get/wchar_t/2.cc: Likewise. 
1750         * testsuite/22_locale/money_get/get/wchar_t/3.cc: Likewise. 
1751         * testsuite/22_locale/money_get/get/wchar_t/4.cc: Likewise. 
1752         * testsuite/22_locale/money_get/get/wchar_t/wrapped_env.cc: Likewise.      
1753         * testsuite/22_locale/money_get/get/wchar_t/wrapped_locale.cc: Likewise.
1754         * testsuite/22_locale/money_put/put/char/1.cc: Likewise.  
1755         * testsuite/22_locale/money_put/put/char/2.cc: Likewise.  
1756         * testsuite/22_locale/money_put/put/char/3.cc: Likewise.  
1757         * testsuite/22_locale/money_put/put/char/9780-3.cc: Likewise.      
1758         * testsuite/22_locale/money_put/put/char/wrapped_env.cc: Likewise. 
1759         * testsuite/22_locale/money_put/put/char/wrapped_locale.cc: Likewise.  
1760         * testsuite/22_locale/money_put/put/wchar_t/1.cc: Likewise. 
1761         * testsuite/22_locale/money_put/put/wchar_t/2.cc: Likewise. 
1762         * testsuite/22_locale/money_put/put/wchar_t/3.cc: Likewise. 
1763         * testsuite/22_locale/money_put/put/wchar_t/wrapped_env.cc: Likewise.     
1764         * testsuite/22_locale/money_put/put/wchar_t/wrapped_locale.cc: Likewise.
1765         * testsuite/22_locale/moneypunct/members/char/2.cc: Likewise.
1766         * testsuite/22_locale/moneypunct/members/char/wrapped_env.cc: Likewise.    
1767         * testsuite/22_locale/moneypunct/members/char/wrapped_locale.cc:
1768         Likewise. 
1769         * testsuite/22_locale/moneypunct/members/wchar_t/2.cc: Likewise.   
1770         * testsuite/22_locale/moneypunct/members/wchar_t/wrapped_env.cc:
1771         Likewise.
1772         * testsuite/22_locale/moneypunct/members/wchar_t/wrapped_locale.cc:
1773         Likewise.
1774         * testsuite/22_locale/moneypunct_byname/named_equivalence.cc: Likewise.
1775         * testsuite/22_locale/num_get/get/char/1.cc: Likewise.   
1776         * testsuite/22_locale/num_get/get/char/3.cc: Likewise.   
1777         * testsuite/22_locale/num_get/get/char/5.cc: Likewise.   
1778         * testsuite/22_locale/num_get/get/char/6.cc: Likewise.   
1779         * testsuite/22_locale/num_get/get/char/9.cc: Likewise.   
1780         * testsuite/22_locale/num_get/get/char/wrapped_env.cc: Likewise.
1781         * testsuite/22_locale/num_get/get/char/wrapped_locale.cc: Likewise. 
1782         * testsuite/22_locale/num_get/get/wchar_t/1.cc: Likewise.  
1783         * testsuite/22_locale/num_get/get/wchar_t/3.cc: Likewise.  
1784         * testsuite/22_locale/num_get/get/wchar_t/5.cc: Likewise.  
1785         * testsuite/22_locale/num_get/get/wchar_t/6.cc: Likewise.  
1786         * testsuite/22_locale/num_get/get/wchar_t/9.cc: Likewise.  
1787         * testsuite/22_locale/num_get/get/wchar_t/wrapped_env.cc: Likewise. 
1788         * testsuite/22_locale/num_get/get/wchar_t/wrapped_locale.cc: Likewise. 
1789         * testsuite/22_locale/num_put/put/char/1.cc: Likewise.      
1790         * testsuite/22_locale/num_put/put/char/20909.cc: Likewise.  
1791         * testsuite/22_locale/num_put/put/char/20914.cc: Likewise.  
1792         * testsuite/22_locale/num_put/put/char/3.cc: Likewise.      
1793         * testsuite/22_locale/num_put/put/char/5.cc: Likewise.      
1794         * testsuite/22_locale/num_put/put/char/9780-2.cc: Likewise. 
1795         * testsuite/22_locale/num_put/put/char/wrapped_env.cc: Likewise.    
1796         * testsuite/22_locale/num_put/put/char/wrapped_locale.cc: Likewise. 
1797         * testsuite/22_locale/num_put/put/wchar_t/1.cc: Likewise. 
1798         * testsuite/22_locale/num_put/put/wchar_t/20909.cc: Likewise.   
1799         * testsuite/22_locale/num_put/put/wchar_t/20914.cc: Likewise.   
1800         * testsuite/22_locale/num_put/put/wchar_t/3.cc: Likewise. 
1801         * testsuite/22_locale/num_put/put/wchar_t/5.cc: Likewise.
1802         * testsuite/22_locale/num_put/put/wchar_t/wrapped_env.cc: Likewise.
1803         * testsuite/22_locale/num_put/put/wchar_t/wrapped_locale.cc: Likewise. 
1804         * testsuite/22_locale/numpunct/members/char/2.cc: Likewise.
1805         * testsuite/22_locale/numpunct/members/char/3.cc: Likewise.
1806         * testsuite/22_locale/numpunct/members/char/wrapped_env.cc: Likewise.    
1807         * testsuite/22_locale/numpunct/members/char/wrapped_locale.cc: Likewise.
1808         * testsuite/22_locale/numpunct/members/wchar_t/2.cc: Likewise.    
1809         * testsuite/22_locale/numpunct/members/wchar_t/wrapped_env.cc: Likewise.
1810         * testsuite/22_locale/numpunct/members/wchar_t/wrapped_locale.cc:
1811         Likewise. 
1812         * testsuite/22_locale/numpunct_byname/named_equivalence.cc: Likewise.       
1813         * testsuite/22_locale/time_get/date_order/char/wrapped_env.cc: Likewise.    
1814         * testsuite/22_locale/time_get/date_order/char/wrapped_locale.cc:
1815         Likewise. 
1816         * testsuite/22_locale/time_get/date_order/wchar_t/wrapped_env.cc:
1817         Likewise. 
1818         * testsuite/22_locale/time_get/date_order/wchar_t/wrapped_locale.cc:
1819         Likewise.
1820         * testsuite/22_locale/time_get/get_date/char/12750.cc: Likewise.
1821         * testsuite/22_locale/time_get/get_date/char/2.cc: Likewise.   
1822         * testsuite/22_locale/time_get/get_date/char/wrapped_env.cc: Likewise.      
1823         * testsuite/22_locale/time_get/get_date/char/wrapped_locale.cc:
1824         Likewise.
1825         * testsuite/22_locale/time_get/get_date/wchar_t/12750.cc: Likewise. 
1826         * testsuite/22_locale/time_get/get_date/wchar_t/2.cc: Likewise.     
1827         * testsuite/22_locale/time_get/get_date/wchar_t/4.cc: Likewise.     
1828         * testsuite/22_locale/time_get/get_date/wchar_t/wrapped_env.cc:
1829         Likewise.  
1830         * testsuite/22_locale/time_get/get_date/wchar_t/wrapped_locale.cc:
1831         Likewise.
1832         * testsuite/22_locale/time_get/get_monthname/char/2.cc: Likewise.  
1833         * testsuite/22_locale/time_get/get_monthname/char/wrapped_env.cc:
1834         Likewise.
1835         * testsuite/22_locale/time_get/get_monthname/char/wrapped_locale.cc:
1836         Likewise.
1837         * testsuite/22_locale/time_get/get_monthname/wchar_t/2.cc: Likewise.
1838         * testsuite/22_locale/time_get/get_monthname/wchar_t/wrapped_env.cc:
1839         Likewise.
1840         * testsuite/22_locale/time_get/get_monthname/wchar_t/wrapped_locale.cc:
1841         Likewise.
1842         * testsuite/22_locale/time_get/get_time/char/1.cc: Likewise.
1843         * testsuite/22_locale/time_get/get_time/char/2.cc: Likewise.
1844         * testsuite/22_locale/time_get/get_time/char/wrapped_env.cc: Likewise.
1845         * testsuite/22_locale/time_get/get_time/char/wrapped_locale.cc:
1846         Likewise.
1847         * testsuite/22_locale/time_get/get_time/wchar_t/1.cc: Likewise.
1848         * testsuite/22_locale/time_get/get_time/wchar_t/2.cc: Likewise.
1849         * testsuite/22_locale/time_get/get_time/wchar_t/wrapped_env.cc:
1850         Likewise. 
1851         * testsuite/22_locale/time_get/get_time/wchar_t/wrapped_locale.cc:
1852         Likewise.
1853         * testsuite/22_locale/time_get/get_weekday/char/2.cc: Likewise.
1854         * testsuite/22_locale/time_get/get_weekday/char/wrapped_env.cc:
1855         Likewise.
1856         * testsuite/22_locale/time_get/get_weekday/char/wrapped_locale.cc:
1857         Likewise. 
1858         * testsuite/22_locale/time_get/get_weekday/wchar_t/2.cc: Likewise.
1859         * testsuite/22_locale/time_get/get_weekday/wchar_t/wrapped_env.cc:
1860         Likewise.    
1861         * testsuite/22_locale/time_get/get_weekday/wchar_t/wrapped_locale.cc:
1862         Likewise. 
1863         * testsuite/22_locale/time_put/put/char/17038.cc: Likewise. 
1864         * testsuite/22_locale/time_put/put/char/2.cc: Likewise.     
1865         * testsuite/22_locale/time_put/put/char/3.cc: Likewise.     
1866         * testsuite/22_locale/time_put/put/char/4.cc: Likewise.     
1867         * testsuite/22_locale/time_put/put/char/6.cc: Likewise.     
1868         * testsuite/22_locale/time_put/put/char/7.cc: Likewise.     
1869         * testsuite/22_locale/time_put/put/char/8.cc: Likewise.     
1870         * testsuite/22_locale/time_put/put/char/9780-1.cc: Likewise.       
1871         * testsuite/22_locale/time_put/put/char/wrapped_env.cc: Likewise.
1872         * testsuite/22_locale/time_put/put/char/wrapped_locale.cc: Likewise.  
1873         * testsuite/22_locale/time_put/put/wchar_t/17038.cc: Likewise.   
1874         * testsuite/22_locale/time_put/put/wchar_t/2.cc: Likewise.
1875         * testsuite/22_locale/time_put/put/wchar_t/3.cc: Likewise.
1876         * testsuite/22_locale/time_put/put/wchar_t/4.cc: Likewise.
1877         * testsuite/22_locale/time_put/put/wchar_t/6.cc: Likewise.
1878         * testsuite/22_locale/time_put/put/wchar_t/7.cc: Likewise.
1879         * testsuite/22_locale/time_put/put/wchar_t/8.cc: Likewise.
1880         * testsuite/22_locale/time_put/put/wchar_t/wrapped_env.cc: Likewise.     
1881         * testsuite/22_locale/time_put/put/wchar_t/wrapped_locale.cc: Likewise.
1882         * testsuite/27_io/basic_filebuf/imbue/char/13007.cc: Likewise.  
1883         * testsuite/27_io/basic_filebuf/imbue/char/13171-1.cc: Likewise.
1884         * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
1885         * testsuite/27_io/basic_filebuf/imbue/char/13171-4.cc: Likewise.
1886         * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise.
1887         * testsuite/27_io/basic_filebuf/imbue/char/14975-1.cc: Likewise.
1888         * testsuite/27_io/basic_filebuf/imbue/char/2.cc: Likewise. 
1889         * testsuite/27_io/basic_filebuf/imbue/char/9322.cc: Likewise.       
1890         * testsuite/27_io/basic_filebuf/imbue/wchar_t/12868.cc: Likewise.
1891         * testsuite/27_io/basic_filebuf/imbue/wchar_t/13007.cc: Likewise.   
1892         * testsuite/27_io/basic_filebuf/imbue/wchar_t/13171-3.cc: Likewise. 
1893         * testsuite/27_io/basic_filebuf/imbue/wchar_t/13582-2.cc: Likewise. 
1894         * testsuite/27_io/basic_filebuf/imbue/wchar_t/13582-3.cc: Likewise. 
1895         * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc: Likewise. 
1896         * testsuite/27_io/basic_filebuf/imbue/wchar_t/2.cc: Likewise.       
1897         * testsuite/27_io/basic_filebuf/imbue/wchar_t/9322.cc: Likewise.    
1898         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-1.cc: Likewise.  
1899         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-2.cc: Likewise.  
1900         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-3.cc: Likewise.  
1901         * testsuite/27_io/basic_filebuf/overflow/wchar_t/11305-4.cc: Likewise.  
1902         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/1.cc: Likewise.    
1903         * testsuite/27_io/basic_filebuf/seekoff/wchar_t/2.cc: Likewise.    
1904         * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9874.cc: Likewise. 
1905         * testsuite/27_io/basic_filebuf/underflow/wchar_t/1.cc: Likewise.  
1906         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-1.cc: Likewise.  
1907         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-2.cc: Likewise.  
1908         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-3.cc: Likewise.  
1909         * testsuite/27_io/basic_filebuf/underflow/wchar_t/11389-4.cc: Likewise.  
1910         * testsuite/27_io/basic_filebuf/underflow/wchar_t/2.cc: Likewise.
1911         * testsuite/27_io/basic_filebuf/underflow/wchar_t/3.cc: Likewise.
1912         * testsuite/27_io/basic_filebuf/underflow/wchar_t/4.cc: Likewise.
1913         * testsuite/27_io/basic_filebuf/underflow/wchar_t/5.cc: Likewise.
1914         * testsuite/27_io/basic_filebuf/underflow/wchar_t/9520.cc: Likewise.        
1915         * testsuite/27_io/basic_ios/copyfmt/char/2.cc: Likewise.   
1916         * testsuite/27_io/basic_ostream/inserters_arithmetic/char/2.cc:
1917         Likewise.   
1918         * testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/2.cc:
1919         Likewise.
1920         * testsuite/27_io/basic_streambuf/imbue/char/13007-1.cc: Likewise.
1921         * testsuite/27_io/basic_streambuf/imbue/char/13007-2.cc: Likewise.
1922         * testsuite/27_io/basic_streambuf/imbue/char/9322.cc: Likewise.  
1923         * testsuite/27_io/basic_streambuf/imbue/wchar_t/13007-1.cc: Likewise.    
1924         * testsuite/27_io/basic_streambuf/imbue/wchar_t/13007-2.cc: Likewise.    
1925         * testsuite/27_io/basic_streambuf/imbue/wchar_t/9322.cc: Likewise. 
1926         * testsuite/27_io/basic_stringbuf/imbue/char/9322.cc: Likewise.    
1927         * testsuite/27_io/basic_stringbuf/imbue/wchar_t/9322.cc: Likewise.
1928         * testsuite/27_io/objects/wchar_t/10.cc: Likewise. 
1929         * testsuite/27_io/objects/wchar_t/11.cc: Likewise. 
1930         * testsuite/27_io/objects/wchar_t/12.cc: Likewise. 
1931         * testsuite/27_io/objects/wchar_t/13.cc: Likewise. 
1932         * testsuite/27_io/objects/wchar_t/9520.cc: Likewise.
1933         * testsuite/ext/stdio_sync_filebuf/wchar_t/12077.cc: Likewise.
1934
1935 2005-05-17  Nathan Sidwell  <nathan@codesourcery.com>
1936
1937         * libsupc++/eh_personality.cc (gcc_unreachable): Define.
1938
1939 2005-05-16  Paolo Carlini  <pcarlini@suse.de>
1940
1941         * docs/html/install.html: Update list of required named
1942         locales, add "es_ES".
1943
1944 2005-05-13  Magnus Fromreide  <magfr@lysator.liu.se>
1945
1946         * testsuite/27_io/basic_streambuf/sgetn/char/1.cc: Use
1947         initialization instead of copying as the string is used only once.
1948         * testsuite/27_io/basic_streambuf/sgetn/wchar_t/1.cc: Likewise.
1949         * testsuite/27_io/basic_streambuf/sputn/char/1.cc: Likewise.
1950         * testsuite/27_io/basic_streambuf/sputn/wchar_t/1.cc: Likewise.
1951
1952 2005-05-12  Benjamin Kosnik  <bkoz@redhat.com>
1953
1954         * scripts/create_testsuite_files: Fix.
1955         
1956 2005-05-12  Kaz Kojima  <kkojima@gcc.gnu.org>
1957
1958         * testsuite/18_support/numeric_limits.cc (dg-options): Add
1959         -mieee to options on sh*-*-*.
1960
1961 2005-05-10  Jonathan Wakely  <redi@gcc.gnu.org>
1962
1963         * include/debug/debug.h: Fix typo in macro name.
1964
1965 2005-05-09  Paolo Carlini  <pcarlini@suse.de>
1966             Giovanni Bajo  <giovannibajo@gcc.gnu.org>
1967             
1968         PR libstdc++/18604
1969         * include/bits/deque.tcc: Fully qualify names from namespace std.
1970         * include/bits/stl_bvector.h: Likewise.
1971         * include/bits/stl_deque.h: Likewise.
1972         * include/bits/stl_list.h: Likewise.
1973         * include/bits/stl_map.h: Likewise.
1974         * include/bits/stl_multimap.h: Likewise.
1975         * include/bits/stl_multiset.h: Likewise.
1976         * include/bits/stl_set.h: Likewise.
1977         * include/bits/stl_vector.h: Likewise.
1978         * include/bits/vector.tcc: Likewise.
1979         * include/std/std_bitset.h: Likewise.
1980         * testsuite/23_containers/bitset/18604.cc: New.
1981         * testsuite/23_containers/deque/18604.cc: Likewise.
1982         * testsuite/23_containers/list/18604.cc: Likewise.
1983         * testsuite/23_containers/map/18604.cc: Likewise.
1984         * testsuite/23_containers/set/18604.cc: Likewise.
1985         * testsuite/23_containers/vector/18604.cc: Likewise.    
1986
1987 2005-05-09  Mike Stump  <mrs@apple.com>
1988
1989         * configure: Regenerate.
1990
1991 2005-05-09  Jonathan Wakely  <redi@gcc.gnu.org>
1992
1993         DR 434. bitset::to_string() hard to use [Ready]
1994         * include/debug/bitset (to_string): Add three overloads, taking
1995         fewer template arguments.
1996
1997 2005-05-06  Mark Mitchell  <mark@codesourcery.com>
1998
1999         * testsuite/testsuite_hooks.cc (try_mkfifo): Remove.
2000         * testsuite/testsuite_hooks.h (try_mkfifo): Likewise.
2001         * testsuite/27_io/basic_filebuf/close/char/4879.cc: Use
2002         dg-require-fork and dg-require-mkfifo.  Replace try_mkfifo with
2003         mkfifo.
2004         * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise.
2005         * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
2006         * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise.
2007         * testsuite/27_io/basic_filebuf/imbue/wchar_t/13582-2.cc:
2008         Likewise.
2009         * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc:
2010         Likewise.
2011         * testsuite/27_io/basic_filebuf/open/char/9507.cc: Likewise.
2012         * testsuite/27_io/basic_filebuf/showmanyc/char/9533-1.cc:
2013         Likewise.
2014         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise.
2015         * testsuite/27_io/objects/char/7.cc: Likewise.
2016         * testsuite/27_io/objects/char/9661-1.cc: Likewise.
2017         * testsuite/27_io/objects/wchar_t/7.cc: Likewise.
2018         * testsuite/27_io/objects/wchar_t/9661-1.cc: Likewise.
2019
2020 2005-05-04  Benjamin Kosnik  <bkoz@redhat.com>
2021
2022         * acinclude.m4: Remove testsuite_wchar_t and testsuite_thread.
2023         * testsuite/Makefile.am: Same.
2024         * scripts/create_testsuite_files: Same. 
2025         * Makefile.in: Regenerate.
2026         * configure: Same.
2027         * include/Makefile.in: Same.
2028         * libmath/Makefile.in: Same.
2029         * libsupc++/Makefile.in: Same.
2030         * po/Makefile.in: Same.
2031         * src/Makefile.in: Same.
2032
2033 2005-05-04  Mark Mitchell  <mark@codesourcery.com>
2034
2035         * testsuite/lib/libstdc++.exp (v3-build_support): Look for
2036         __GTHREADS, rather than _GLIBCXX_HAVE_GTHR_DEFAULT, to determine
2037         whether or not thread support is available.
2038
2039         * docs/html/test.html: Explain how to run the testsuite on an
2040         installed directory. 
2041
2042 2005-05-01  Paolo Carlini  <pcarlini@suse.de>
2043
2044         * config/os/aix/os_defines.h: Remove obsolete __off_t,
2045         __off64_t, __ssize_t defines.
2046         * config/os/djgpp/os_defines.h: Likewise.
2047         * config/os/hpux/os_defines.h: Likewise.
2048         * config/os/irix/irix5.2/os_defines.h: Likewise.
2049         * config/os/irix/irix6.5/os_defines.h: Likewise.
2050         * config/os/solaris/solaris2.5/os_defines.h: Likewise.
2051         * config/os/solaris/solaris2.6/os_defines.h: Likewise.
2052         * config/os/solaris/solaris2.7/os_defines.h: Likewise.
2053         * docs/html/17_intro/porting.html: Don't discuss the defines.
2054         * docs/html/17_intro/porting.texi: Likewise.
2055
2056 2005-04-29  Paolo Carlini  <pcarlini@suse.de>
2057             Nathan Myers  <ncm@cantrip.org>
2058
2059         PR libstdc++/21286
2060         * include/bits/fstream.tcc (basic_filebuf<>::xsgetn):
2061         Loop on short reads; remove the work-around for
2062         libstdc++/20806, not needed anymore.
2063
2064 2005-04-29  Paolo Carlini  <pcarlini@suse.de>
2065
2066         PR libstdc++/21238
2067         * include/bits/locale_facets.tcc (num_get::_M_extract_float,
2068         num_get::_M_extract_int, num_get::do_get(bool&),
2069         num_put::_M_insert_int, num_put::_M_insert_float,
2070         num_put::do_put(bool), money_get::_M_extract,
2071         money_put::_M_insert): Adjust the __cache_type typedef not to
2072         forward to a numpunct/moneypunct typedef.
2073         * testsuite/testsuite_character.h: Add pod_uint and its numpunct
2074         and moneypunct specializations.
2075         * testsuite/testsuite_character.cc: Add numpunct<pod_uint>::id
2076         and moneypunct<pod_uint>::id.
2077         * testsuite/22_locale/num_get/3.cc: New.
2078         * testsuite/22_locale/num_put/3.cc: Likewise.
2079         * testsuite/22_locale/money_get/3.cc: Likewise.
2080         * testsuite/22_locale/money_put/3.cc: Likewise.
2081
2082         * include/bits/locale_facets.tcc (money_put::_M_insert,
2083         time_get::_M_extract_name): Prefer operator== to operator!=
2084         on char_types.
2085
2086 2005-04-29  Paolo Carlini  <pcarlini@suse.de>
2087
2088         * include/tr1/type_traits (is_convertible): Adjust according
2089         to the resolution of TR1 issue 3.20.
2090         * testsuite/tr1/4_metaprogramming/relationships_between_types/
2091         is_convertible/is_convertible.cc: Add tests.
2092
2093 2005-04-28  Paolo Carlini  <pcarlini@suse.de>
2094             Gabriel Dos Reis  <gdr@integrable-solutions.net>
2095
2096         PR libstdc++/21244 (cont)
2097         * include/bits/cpp_type_traits.h (struct __traitor): Convert
2098         to bool the values.
2099         * include/bits/stl_algo.h: Convert _S_threshold to int.
2100         * include/bits/stl_bvector.h: Revert previous change, convert
2101         _S_word_bit to int.
2102         * include/debug/formatter.h: Convert __max_parameters to
2103         size_t.
2104         * include/ext/mt_allocator.h: Likewise for _S_chunk_size.
2105         * include/ext/pool_allocator.h: Likewise for _S_max_bytes and
2106         _S_align.
2107         * include/ext/rope: Likewise for _S_alloc_granularity; convert
2108         _S_max_rope_depth to int.
2109         * include/ext/ropeimpl.h: Convert _S_path_cache_len to int;
2110         _S_max_rope_depth to int; _S_copy_max to size_t.
2111
2112 2005-04-27  Benjamin Kosnik  <bkoz@redhat.com>
2113
2114         * docs/doxygen/user.cfg.in: Update to doxygen-1.4.2.
2115         * docs/doxygen/doxygroups.cc: Update namespace comments.
2116
2117 2005-04-27  Dominik Strasser  <dominik.strasser@infineon.com>
2118             Paolo Carlini  <pcarlini@suse.de>
2119
2120         PR libstdc++/21244
2121         * include/bits/stl_bvector.h: Change the anonymous enum
2122         at namespace scope to _S_word_bit_enum.
2123         * testsuite/23_containers/vector/bool/21244.cc: New.
2124
2125 2005-04-27  Paolo Carlini  <pcarlini@suse.de>
2126
2127         * include/tr1/type_traits (has_trivial_copy, has_trivial_assign,
2128         has_nothrow_copy, has_nothrow_assign): Adjust according to the
2129         resolution of TR1 issue 3.21.
2130         * testsuite/testsuite_tr1.h (test_copy_property,
2131         test_assign_property): Remove.
2132         * testsuite/tr1/4_metaprogramming/type_properties/
2133         has_nothrow_assign/has_nothrow_assign.cc: Adjust.
2134         * testsuite/tr1/4_metaprogramming/type_properties/
2135         has_nothrow_copy/has_nothrow_copy.cc: Likewise.
2136         * testsuite/tr1/4_metaprogramming/type_properties/
2137         has_trivial_assign/has_trivial_assign.cc: Likewise.
2138         * testsuite/tr1/4_metaprogramming/type_properties/
2139         has_trivial_copy/has_trivial_copy.cc: Likewise.
2140
2141 2005-04-26  Jones Desougi  <jones@ingate.com>
2142
2143         PR libstdc++/21131
2144         * linkage.m4: Fix comments.
2145
2146 2005-04-26  Paolo Carlini  <pcarlini@suse.de>
2147
2148         PR libstdc++/21209
2149         * include/bits/locale_facets.tcc (_M_extract_int): Avoid signed
2150         integer overflow, always use a suited unsigned type in the main
2151         parsing loop.
2152         (struct __to_unsigned_type): New.
2153         * testsuite/22_locale/num_get/get/char/16.cc: New.
2154         * testsuite/22_locale/num_get/get/wchar_t/16.cc: Likewise.
2155
2156 2005-04-25  Paolo Carlini  <pcarlini@suse.de>
2157
2158         PR libstdc++/21035
2159         * include/bits/basic_string.h (compare): Adjust the documentation
2160         to match the implementation and the standard.
2161
2162 2005-04-24  Paolo Carlini  <pcarlini@suse.de>
2163
2164         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 35.
2165
2166 2005-04-20  Mark Mitchell  <mark@codesourcery.com>
2167
2168         * testsuite/ext/bitmap_allocator/check_allocate_max_size.cpp: Add
2169         explicit instantiations for systems without weak symbols.
2170         * testsuite/ext/bitmap_allocator/check_deallocate_null.cc:
2171         Likewise. 
2172
2173 2005-04-18  Jonathan Wakely  <redi@gcc.gnu.org>
2174
2175         * include/bits/stl_algo.h (rotate_copy): Add missing std qualification.
2176
2177 2005-04-17  Paolo Carlini  <pcarlini@suse.de>
2178
2179         PR libstdc++/20914
2180         * include/bits/locale_facets.tcc (__int_to_char(_CharT*, _ValueT,
2181         const _CharT*, ios_base::fmtflags, bool)): Don't deal with numeric
2182         base or sign here, instead...
2183         (_M_insert_int(_OutIter, ios_base&, _CharT, _ValueT)): ... here,
2184         after adding the grouping. This fixes the bug and also allows to
2185         clean-up the code dealing with integer types.
2186         (_M_group_int(const char*, size_t, _CharT, ios_base&, _CharT*,
2187         _CharT*, int&)): Simplify, remove bits dealing with numeric base.
2188         (__int_to_char(_CharT*, unsigned long, const _CharT*,
2189         ios_base::fmtflags), __int_to_char(_CharT*, unsigned long long,
2190         const _CharT*, ios_base::fmtflags)): Remove hackish fix for
2191         libstdc++/15565.
2192         (__int_to_char(_CharT*, long, const _CharT*, ios_base::fmtflags),
2193         __int_to_char(_CharT*, long long, const _CharT*, ios_base::fmtflags)):
2194         Simplify, don't pass the sign.
2195         (_M_insert_float(_OutIter, ios_base&, _CharT, char, _ValueT)):
2196         Deal with a sign at the beginning of __cs; robustify the grouping
2197         check.
2198         * testsuite/22_locale/num_put/put/char/20914.cc: New.
2199         * testsuite/22_locale/num_put/put/wchar_t/20914.cc: Likewise.
2200
2201 2005-04-14  Benjamin Kosnik  <bkoz@redhat.com>
2202
2203         * include/ext/bitmap_allocator.h
2204         (__gnu_cxx::free_list::_M_get_mutex): New.
2205         (__gnu_cxx::free_list::_M_get_free_list): New.
2206         (__gnu_cxx::free_list::_S_bfl_mutex): Remove.
2207         (__gnu_cxx::free_list::_S_free_list): Remove.
2208         * src/bitmap_allocator.cc: Same.
2209         * config/linker-map.gnu: Remove free_list and mutex export.
2210
2211 2005-04-14  Benjamin Kosnik  <bkoz@redhat.com>
2212
2213         *  include/ext/pod_char_traits.h (__gnu_cxx::character): Add char_type.
2214         (character::to): New.
2215         (character::from): New.
2216         (operator==): Add state parameter.
2217         (operator<): Same.
2218         (char_traits::copy): Use std::copy.
2219         (char_traits::assign): Use std::fill_n.
2220         (char_traits::to_char_type): Use character::from.
2221         (char_traits::to_int_type): Use character::to.
2222         *  testsuite/testsuite_character.h (__gnu_test::character): Remove.
2223         (__gnu_test::conversion_state): Remove.
2224         (__gnu_test::pod_char): Remove.
2225         (pod_char): New typedef.
2226         (pod_uchar): New typedef.
2227         (pod_ushort): New typedef.
2228         *  testsuite/testsuite_character.cc: Fixups.
2229         *  testsuite/21_strings/basic_string/inserters_extractors/pod/
2230         10081-in.cc: Same.
2231         *  testsuite/21_strings/basic_string/inserters_extractors/pod/
2232         10081-out.cc: Same.
2233         *  testsuite/22_locale/numpunct/members/pod/1.cc: Same.
2234         *  testsuite/22_locale/numpunct/members/pod/2.cc: Same.
2235         *  testsuite/27_io/basic_filebuf/close/12790-1.cc: Same.
2236         *  testsuite/27_io/basic_filebuf/open/12790-1.cc: Same.
2237         *  testsuite/27_io/basic_filebuf/seekoff/12790-1.cc: Same.
2238         *  testsuite/27_io/basic_filebuf/seekoff/12790-2.cc: Same.
2239         *  testsuite/27_io/basic_filebuf/seekoff/12790-3.cc: Same.
2240         *  testsuite/27_io/basic_filebuf/seekoff/12790-4.cc: Same.
2241         *  testsuite/27_io/basic_filebuf/seekpos/12790-1.cc: Same.
2242         *  testsuite/27_io/basic_filebuf/seekpos/12790-2.cc: Same.
2243         *  testsuite/27_io/basic_filebuf/seekpos/12790-3.cc: Same.
2244         *  testsuite/27_io/basic_ios/imbue/14072.cc: Same.
2245         *  testsuite/27_io/basic_istream/extractors_arithmetic/pod/
2246         3983-1.cc: Same.
2247         *  testsuite/27_io/basic_istream/extractors_character/pod/
2248         3983-2.cc: Same.
2249         *  testsuite/27_io/basic_istream/extractors_other/pod/3983-3.cc: Same.
2250         *  testsuite/27_io/basic_istream/sentry/pod/1.cc: Same.
2251         *  testsuite/27_io/basic_ostream/sentry/pod/1.cc: Same.
2252
2253 2005-04-12  Mike Stump  <mrs@apple.com>
2254
2255         * configure: Regenerate.
2256
2257 2005-04-08  Benjamin Kosnik  <bkoz@redhat.com>
2258
2259         * testsuite/Makefile.am: Remove libv3test.a.
2260         * testsuite/Makefile.in: Regenerate.
2261         * testsuite/lib/libstdc++.exp (v3_target_compile): Fix comments.
2262         
2263 2005-04-08  Paolo Carlini  <pcarlini@suse.de>
2264
2265         PR libstdc++/20909
2266         * include/bits/locale_facets.tcc (num_put<>::_M_insert_float):
2267         Don't even try to group numbers like 2e20, i.e., no decimal
2268         point, scientific notation.
2269         * testsuite/22_locale/num_put/put/char/20909.cc: New.
2270         * testsuite/22_locale/num_put/put/wchar_t/20909.cc: Likewise.
2271
2272 2005-04-08  Kelley Cook  <kcook@gcc.gnu.org>
2273
2274         * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Define _GLIBCXX_ASM_SYMVER.
2275         * acconfig.h: Delete file.
2276         * Makefile.in, acinclude.m4, configure: Regenerate.
2277
2278 2005-04-08  Kelley Cook  <kcook@gcc.gnu.org>
2279
2280         * linkage.m4 (GLIBCXX_MAYBE_UNDERSCORED_FUNCS): New macro.
2281         (GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_1,
2282         GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_2,
2283         GLIBCXX_CHECK_MATH_DECL_AND_LINKAGE_3,
2284         GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1,
2285         GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_2): Use it.
2286         (GLIBCXX_CHECK_MATH_SUPPORT): Delete obsolete comment.
2287         * acconfig.h: Delete redundant macros.
2288         * config.h.in, configure: Regenerate.
2289
2290 2005-04-08  Kelley Cook  <kcook@gcc.gnu.org>
2291
2292         * linkage.m4 (GLIBCXX_CHECK_MATH_DECLS_AND_LINKAGES_1): Eliminate
2293         a subshell and if test fails, test for same functions with 
2294         leading underscore.
2295         (GLIBCXX_CHECK_MATH_SUPPORT): Eliminate seperate checks for _funcs.
2296         * configure: Regenerate.
2297
2298 2005-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
2299             Paolo Carlini  <pcarlini@suse.de>
2300                         
2301         PR libstdc++/20806
2302         * config/os/mingw32/os_defines.h: Define
2303         _GLIBCXX_HAVE_DOS_BASED_FILESYSTEM.
2304         * config/os/newlib/os_defines.h: Likewise, for __CYGWIN__.
2305         * include/bits/fstream.tcc (basic_filebuf<>::showmanyc()):
2306         Use it.
2307         (basic_filebuf<>::xsgetn(_CharT*, streamsize)): Likewise.
2308
2309 2005-04-08  Kelley Cook  <kcook@gcc.gnu.org>
2310
2311         * acconfig.h: Sort the bottom section.
2312         * config.h.in: Regenerate.
2313
2314 2005-04-08  Kelley Cook  <kcook@gcc.gnu.org>
2315
2316         * acconfig.h: Remove redundant HAVE_FLOAT_H.
2317         * config.h.in: Regenerate.
2318
2319 2005-04-08  Kelley Cook  <kcook@gcc.gnu.org>
2320
2321         * configure.ac: Create template for PACKAGE and VERSION.
2322         Update comment on how to regenerate file.  Update minimum
2323         automake version to 1.9.3.
2324         * acconfig.h: Remove PACKAGE and VERSION.
2325         * aclocal.m4, configure, Makefile.in, po/Makefile.in, 
2326         src/Makefile.in, include/Makefile.in, libmath/Makefile.in, 
2327         testsuite/Makefile.in, config.h.in: Regenerate.
2328
2329 2005-04-06  Benjamin Kosnik  <bkoz@redhat.com>
2330
2331         * docs/html/test.html: Update.
2332         * testsuite/printnow.c: Remove.
2333         * scripts/check_survey.in: Remove.
2334
2335         * testsuite/abi_check.cc: To...
2336         * testuite/testsuite_abi_check.cc: ...here.
2337         * testsuite/libstdc++-abi/abi.exp: Change abi_check.cc to
2338         testsuite_abi_check.cc.
2339
2340         * testsuite/testsuite_hooks.h: Move character related bits to...
2341         * testsuite/testsuite_character.h: ...here.
2342         * testsuite/testsuite_character.cc: ... and here.
2343         * testsuite/21_strings/basic_string/inserters_extractors/pod/
2344         10081-in.cc: Use testsuite_character.h.
2345         * testsuite/21_strings/basic_string/inserters_extractors/pod/
2346         10081-out.cc: Same.
2347         * testsuite/22_locale/numpunct/members/pod/1.cc: Same.
2348         * testsuite/22_locale/numpunct/members/pod/2.cc: Same.
2349         * testsuite/27_io/basic_filebuf/2.cc: Same.
2350         * testsuite/27_io/basic_fstream/2.cc: Same.
2351         * testsuite/27_io/basic_istream/2.cc: Same.
2352         * testsuite/27_io/basic_istream/extractors_arithmetic/pod/
2353         3983-1.cc: Same.
2354         * testsuite/27_io/basic_istream/extractors_character/char/
2355         9826.cc: Same.
2356         * testsuite/27_io/basic_istream/extractors_character/pod/
2357         3983-2.cc: Same.
2358         * testsuite/27_io/basic_istream/extractors_other/pod/3983-3.cc: Same.
2359         * testsuite/27_io/basic_istream/sentry/pod/1.cc: Same.
2360         * testsuite/27_io/basic_ostream/2.cc: Same.
2361         * testsuite/27_io/basic_ostream/sentry/pod/1.cc: Same.
2362         * testsuite/27_io/basic_streambuf/2.cc: Same.
2363         * testsuite/27_io/basic_stringbuf/2.cc: Same.
2364         * testsuite/27_io/basic_stringbuf/4.cc: Same.
2365         * testsuite/27_io/basic_stringstream/2.cc: Same.
2366         * testsuite/27_io/fpos/1.cc: Same.
2367         * testsuite/ext/mt_allocator/tune-1.cc: Same.
2368         * testsuite/ext/mt_allocator/tune-2.cc: Same.
2369         * testsuite/ext/stdio_filebuf/char/1.cc: Same.  
2370         * testsuite/lib/libstdc++.exp (v3-build_support): Add
2371         testsuite_character.cc.
2372         * testsuite/Makefile.am (libv3test_a_SOURCES): Add
2373         testsuite_character.cc.
2374         * testsuite/Makefile.in: Regenerate.
2375                 
2376         * configure.ac: Remove use of check_survey.
2377         * configure: Regenerate.
2378         * testsuite/Makefile.am: Remove check-script and
2379         check-script-install rules.
2380         * testsuite/Makefile.in: Regenerate.
2381
2382 2005-04-06  Ulrich Weigand  <uweigand@de.ibm.com>
2383
2384         * config/cpu/s390/atomicity.h (__exchange_and_add): Add "memory"
2385         clobber to inline assembly statement.
2386
2387 2005-04-06  Kelley Cook  <kcook@gcc.gnu.org>
2388
2389         * acinclude.m4 (_GLIBCXX_USE_LONG_LONG,
2390         _GLIBCXX_USE_WCHAR_T, _GLIBCXX_USE_C99, _GLIBCXX_USE_C99_MATH,
2391         _GLIBCXX_USE_C99_COMPLEX, _GLIBCXX_RES_LIMITS, _GLIBCXX_CONCEPT_CHECKS,
2392         _GLIBCXX_SYMVER, _GLIBCXX_USE_LFS, _GLIBCXX_FULLY_DYNAMIC_STRING,
2393         _GLIBCXX_USE_NLS, HAVE_GTHR_DEFAULT, HAVE_MBSTATE_T, HAVE_POLL,
2394         HAVE_S_ISREG, HAVE_S_IFREG, HAVE_WRITEV, HAVE_INT64_T,
2395         HAVE_LC_MESSAGES): Use long form of AC_DEFINE ...
2396         * acconfig.h: ... to eliminate them from here.
2397         (_GLIBCXX_ASM_SYMVER): Move definition below @BOTTOM@.
2398         * config.h.in, configure: Regenerate.
2399         
2400 2005-04-05  Kelley Cook  <kcook@gcc.gnu.org>
2401
2402         * Makefile.am (ACLOCAL_AMFLAGS): Define.
2403         * crossconfig.m4: Wrap file into new GLIBCXX_CROSSCONFIG macro.
2404         * configure.ac: Use it.
2405         * acinclude.m4: Delete explicit m4_includes and sincludes.
2406         * aclocal.m4, configure, Makefile.in, po/Makefile.in, 
2407         src/Makefile.in, include/Makefile.in, libmath/Makefile.in, 
2408         testsuite/Makefile.in: Regenerate.
2409
2410 2005-04-05  Jonathan Wakely  <redi@gcc.gnu.org>
2411
2412         * include/tr1/memory, include/tr1/boost_shared_ptr.h: Use mutex
2413         to make _Sp_counted_base::add_ref_lock() thread-safe. Check whether
2414         to destroy resources by testing for equality, not inequality. Add
2415         empty critical sections to solve memory visibility issues.
2416         * testsuite/tr1/2_general_utilities/memory/
2417         shared_ptr/cons/auto_ptr_neg.cc: Use dg-excess-errors instead of
2418         explicitly listing line numbers which need to be kept in sync.
2419         * testsuite/tr1/2_general_utilities/memory/
2420         shared_ptr/assign/auto_ptr_neg.cc: Same.
2421         * testsuite/tr1/2_general_utilities/memory/
2422         shared_ptr/assign/auto_ptr_rvalue_neg.cc: Same.
2423         * testsuite/tr1/2_general_utilities/memory/
2424         shared_ptr/cons/weak_ptr_expired.cc: Make XFAIL for consistency when
2425         -fno-exceptions.
2426         * testsuite/tr1/2_general_utilities/memory/
2427         enable_shared_from_this/not_shared.cc: Add explanatory comments.
2428         * testsuite/tr1/2_general_utilities/memory/
2429         enable_shared_from_this/not_shared2.cc: Same.
2430         * testsuite/tr1/2_general_utilities/memory/
2431         enable_shared_from_this/not_shared3.cc: Same.
2432
2433 2005-04-05  Kelley Cook  <kcook@gcc.gnu.org>
2434
2435         * acconfig.h: Delete macros already AC_DEFINED.
2436         * config.h.in: Regenerate.
2437
2438 2005-04-05  Kelley Cook  <kcook@gcc.gnu.org>
2439
2440         * acconfig.h (HAVE_MODF): Remove.
2441         * linkage.m4: Check for modf.
2442         * config.h.in, configure: Regenerate.
2443
2444 2005-04-05  Kelley Cook  <kcook@gcc.gnu.org>
2445
2446         * acconfig.h (ENABLE_NLS, HAVE_CATGETS): Remove.
2447         (HAVE_GETTEXT, HAVE_STPCPY): Likewise.
2448         * config.h.in: Regenerate.
2449         
2450 2005-04-05  Kelley Cook  <kcook@gcc.gnu.org>
2451
2452         * linkage.m4 (GLIBCXX_CHECK_BUILTIN_MATH_DEC): Use m4 translit macro 
2453         to convert to uppercase instead of shelling out to tr.
2454         * acconfig.h: Remove now redundant HAVE__BUILTINS_*.
2455         * configure, config.h.in: Regenerate.
2456
2457 2005-04-05  Kelley Cook  <kcook@gcc.gnu.org>
2458
2459         * acconfig.h (HAVE_TANL): Correct cut-and-paste typo.
2460         * config.h.in: Regenerate.
2461
2462 2005-04-04  Mark Mitchell  <mark@codesourcery.com>
2463
2464         * testsuite/Makefile.am (check-local): Remove.
2465         (curent_symbols.txt): Likewise.
2466         (check-abi): Do not depend on current_symbols.txt.
2467         * testsuite/Makefile.in: Regenerated.
2468         * testsuite/libstdc++-abi/abi.exp: Build current_symbols.txt.
2469
2470 2005-04-02  Douglas Gregor  <doug.gregor@gmail.com>
2471         
2472         * include/tr1/tuple_iterate.h (tuple_element): Use new macro
2473         _GLIBCXX_T_NUM_ARGS_PLUS_1 because _T is a macro on Darwin.
2474         * include/tr1/repeat.h (_GLIBCXX_T_NUM_ARGS_PLUS_1): Define for
2475         each iteration.
2476         * scripts/gen_includers.h: Define _GLIBCXX_T_NUM_ARGS_PLUS_1 for
2477         each iteration.
2478         
2479 2005-04-01  Douglas Gregor  <doug.gregor@gmail.com>
2480
2481         * include/tr1/functional (_Maybe_wrap_member_pointer): Wrap up
2482         member pointers in _Mem_fn but let other function objects pass
2483         through unchanged.
2484         * include/tr1/functional_iterator (bind): Reduce number of bind()
2485         overloads to two to eliminate ambiguities. Use
2486         _Maybe_wrap_member_pointer to handle member pointers gracefully.
2487         
2488 2005-04-01  Mark Mitchell  <mark@codesourcery.com>
2489
2490         * testsuite/Makefile.am (noinst_PROGRAMS): Remove.
2491         (site.exp): Write out the path to the baseline file.
2492         (check-abi): Use DejaGNU.
2493         (check-abi-verbose): Remove.
2494         * testsuite/Makefile.in: Regenerated.
2495         * testsuite/abi_check.cc (main): Check the return value from
2496         compare_symbols.
2497         * testsuite/testsuite_abi.cc (compare_symbols): Return a value.
2498         * testsuite/testsuite_abi.h (compare_symbols): Adjust prototype.
2499         * testsuite/libstdc++-abi/abi.exp: New file.
2500
2501 2005-03-31  Chris Jefferson  <chris@bubblescope.net>
2502
2503         * include/tr1/tuple: Support iteration via tuple_iterate.h.
2504         * include/tr1/tuple_iterate.h: Iteration file for tuple.
2505
2506 2005-03-31  Douglas Gregor  <doug.gregor@gmail.com>
2507
2508         * include/Makefile.am (tr1_headers): Add bind and mu repetition
2509         headers and reference_wrapper<> forwarding header.
2510         * include/Makefile.in: Regenerate.
2511         * include/tr1/bind_iterate.h: Implementation of function call
2512         operators for the function object returned from tr1::bind().
2513         * include/tr1/bind_repeat.h: Bind-specific repetition header,
2514         akin to include/tr1/repeat.h.
2515         * include/tr1/functional (_Mem_fn): Bug fix: declare result member
2516         template for use with result_of.
2517         (is_bind_expression): New.
2518         (is_placeholder): New.
2519         (_Placeholder): New. Placeholder type for bind.
2520         (_Mu): New. Implementation detail of bind.
2521         (_Bind, _Bind_result): New. Function objects returned by bind.
2522         (_GLIBCXX_JOIN): New. Required to create bind placeholders.
2523         * include/tr1/functional_iterate.h (_Bind, _Bind_result, bind):
2524         New. Implementation of tr1::bind.
2525         * include/tr1/mu_iterate.h (_Mu): result template and operator()
2526         for the _Mu helper to bind.
2527         * include/tr1/ref_fwd.h (reference_wrapper): Forward declaration
2528         used by tuple header.
2529         (ref): Ditto.
2530         (cref): Ditto.
2531         * include/tr1/repeat.h: Add bind-specific repetition macros.
2532         * include/tr1/tuple: Use reference_wrapper forwarding header for
2533         initial definitions, then include <tr1/functional> at the end, to
2534         make the circular dependencies work.
2535         (tie): Support zero-argument tie() function.
2536         * testsuite/tr1/3_function_objects/bind/all_bound.cc: New test of
2537         bind() functionality with parameters bound.
2538         * testsuite/tr1/3_function_objects/bind/nested.cc: New test of
2539         nested bind() expressions.
2540         * testsuite/tr1/3_function_objects/bind/placeholders.cc: New test
2541         of bind() placeholders.
2542         * testsuite/tr1/3_function_objects/bind/ref.cc: New test of bind()
2543         with arguments bound via reference_wrapper<>.
2544         * scripts/gen_includers.pl: Generate the repetitive part of
2545         include/tr1/repeat.h.
2546         * scripts/gen_bind_includers.pl: Generate the repetitive part of
2547         include/tr1/bind_repeat.h. 
2548         
2549 2005-03-30  Aaron W. LaFramboise  <aaronavay62@aaronwl.com>
2550
2551         * testsuite/Makefile.am (CXX): Use ${SHELL}.
2552         (GLIBCXX_INCLUDES): Same.
2553         (AM_CXXFLAGS): Same.
2554         * testsuite/Makefile.in: Regenerate.
2555
2556 2005-03-25  Mark Mitchell  <mark@codesourcery.com>
2557
2558         * testsuite/lib/libstdc++.exp (libstdc++_init): Define LOCALEDIR
2559         when testing an installed compiler.
2560         
2561         * testsuite/lib/libstdc++.exp (v3-build_support): Pass -w when
2562         compiling support objects.
2563
2564 2005-03-24  Benjamin Kosnik  <bkoz@redhat.com>
2565
2566         * include/tr1/memory: Forward to...
2567         * include/tr1/boost_shared_ptr.h: ...here. Add Boost Software License.
2568         * include/Makefile.am (tr1_headers): Add boost_shared_ptr.h.
2569         * include/Makefile.in: Regenerate.
2570         * testsuite/tr1/2_general_utilities/memory/shared_ptr/cons/
2571         auto_ptr_neg.cc: Adjust line numbers.
2572
2573 2005-03-23  Mark Mitchell  <mark@codesourcery.com>
2574
2575         * testsuite/Makefile.am (all-local): Do not build testsuite_files.
2576         * testsuite/Makefile.in: Regenerated. 
2577
2578 2005-03-23  Benjamin Kosnik  <bkoz@redhat.com>
2579
2580         * acinclude.m4: Adjust so that _GLIBCXX_USE_C99 implies
2581         using _GLIBCXX_USE_C99_COMPLEX, _GLIBCXX_USE_C99_MATH, and
2582         _GLIBCXX_USE_C99_WCHAR.
2583         Remove GLIBCXX_ENABLE_C_MBCHAR, consolidate in GLIBCXX_ENABLE_C99
2584         and GLIBCXX_ENABLE_WCHAR_T.
2585         Take C99 bits from GLIBCXX_CHECK_WCHAR_T_SUPPORT and put in 
2586         GLIBCXX_ENABLE_C99.
2587         Change remaining parts of GLIBCXX_CHECK_WCHAR_T_SUPPORT to
2588         GLIBCXX_CHECK_ICONV_SUPPORT.
2589         * configure.ac: Remove GLIBCXX_ENABLE_C_MBCHAR, use
2590         GLIBCXX_CHECK_ICONV_SUPPORT and GLIBCXX_ENABLE_WCHAR_T.
2591         * crossconfig.m4: Same.
2592         * acconfig.h: Same, adjust comments.
2593         * config.h.in: Regenerate.
2594         * configure: Regenerate.
2595         * docs/html/configopts.html: Change --enable-c-mbchar to
2596         --enable-wchar_t.
2597
2598         * config/locale/gnu/c++locale_internal.h: Guard wide functions
2599         with _GLIBCXX_USE_WCHAR_T.
2600         * include/c_std/std_cwctype.h: Alphabetize, remove duplicates.
2601         * include/c_std/std_cstdio.h: Spacing.
2602
2603         * config/locale/gnu/c_locale.h: Tweaks for unused warnings.
2604         * src/debug.cc: Same.
2605
2606 2005-03-23  Mark Mitchell  <mark@codesourcery.com>
2607
2608         * testsuite/libstdc++-dg/normal.exp: Read testsuite_files, if it
2609         exists.
2610
2611         * testsuite/lib/libstdc++.exp (libstdc++_wchar_t): Rename to ...
2612         (v3-wchar_t): ... this.
2613         (libstdc++_threads): Rename to ...
2614         (v3-threads): ... this.
2615         (libstdc++_test_objs): Rename to ...
2616         (v3-test_objs): ... this.
2617         (libstdc++_build_support): Rename to ...
2618         (v3-build_support): ... this.
2619         * testsuite/libstdc++-dg/normal.exp: Adjust to use new names.
2620
2621         * testsuite/lib/libstdc++.exp (libstdc++_init): Improve handling
2622         of compilers not in the build directory.
2623         (libstdc++_wchar_t): New variable.
2624         (libstdc++_threads): Likewise.
2625         (libstdc++_test_objs): Likewise.
2626         (v3_target_compile): Use libstdc++_test_objs.
2627         (v3-list-tests): Remove.
2628         (listdc++_build_support): New function.
2629         * testsuite/libstdc++-dg/normal.exp: Rework to dynamically
2630         generate list of tests.
2631
2632 2005-03-21  Chris Jefferson  <chris@bubblescope.net>
2633
2634         PR libstdc++/20577
2635         * include/bits/stl_algobase.h (iter_swap): Only delegate iter_swap
2636         to swap when the iterator's reference_type is a reference to its
2637         value_type.
2638         * testsuite/25_algorithms/iter_swap/20577.cc: New.
2639
2640 2005-03-21  Zack Weinberg  <zack@codesourcery.com>
2641
2642         * acinclude.m4 (GLIBCXX_CONFIGURE): Delete gcc_version logic.
2643         (GLIBCXX_EXPORT_INSTALL_INFO): Adjust quotation so ${gcc_version}
2644         is expanded by the Makefiles, not by configure.
2645         * fragment.am: Set gcc_version.
2646         * libmath/Makefile.am: Likewise.
2647         * configure, Makefile.in, include/Makefile.in, libmath/Makefile.in
2648         * libsupc++/Makefile.in, po/Makefile.in, src/Makefile.in
2649         * testsuite/Makefile.in: Regenerate.
2650
2651 2005-03-16  Paolo Carlini  <pcarlini@suse.de>
2652
2653         * testsuite/20_util/functional/binders.cc: Remove explicit
2654         instantiations for non-weak systems.
2655         * testsuite/20_util/memory/allocator/1.cc: Likewise.
2656         * testsuite/20_util/memory/allocator/10378.cc: Likewise.
2657         * testsuite/20_util/memory/allocator/10416.cc: Likewise.
2658         * testsuite/20_util/memory/allocator/8230.cc: Likewise.
2659         * testsuite/20_util/utility/rel_ops.cc: Likewise.
2660         * testsuite/22_locale/ctype/is/char/2.cc: Likewise.
2661         * testsuite/22_locale/ctype/is/wchar_t/2.cc: Likewise.
2662         * testsuite/23_containers/deque/cons/1.cc: Likewise.
2663         * testsuite/23_containers/deque/cons/2.cc: Likewise.
2664         * testsuite/23_containers/deque/invalidation/1.cc: Likewise.
2665         * testsuite/23_containers/deque/invalidation/2.cc: Likewise.
2666         * testsuite/23_containers/deque/invalidation/3.cc: Likewise.
2667         * testsuite/23_containers/deque/invalidation/4.cc: Likewise.
2668         * testsuite/23_containers/deque/modifiers/swap.cc: Likewise.
2669         * testsuite/23_containers/deque/operators/1.cc: Likewise.
2670         * testsuite/23_containers/list/capacity/1.cc: Likewise.
2671         * testsuite/23_containers/list/cons/1.cc: Likewise.
2672         * testsuite/23_containers/list/cons/2.cc: Likewise.
2673         * testsuite/23_containers/list/cons/3.cc: Likewise.
2674         * testsuite/23_containers/list/cons/4.cc: Likewise.
2675         * testsuite/23_containers/list/cons/5.cc: Likewise.
2676         * testsuite/23_containers/list/cons/6.cc: Likewise.
2677         * testsuite/23_containers/list/cons/7.cc: Likewise.
2678         * testsuite/23_containers/list/cons/8.cc: Likewise.
2679         * testsuite/23_containers/list/cons/9.cc: Likewise.
2680         * testsuite/23_containers/list/invalidation/1.cc: Likewise.
2681         * testsuite/23_containers/list/invalidation/2.cc: Likewise.
2682         * testsuite/23_containers/list/invalidation/3.cc: Likewise.
2683         * testsuite/23_containers/list/invalidation/4.cc: Likewise.
2684         * testsuite/23_containers/list/modifiers/1.cc: Likewise.
2685         * testsuite/23_containers/list/modifiers/2.cc: Likewise.
2686         * testsuite/23_containers/list/modifiers/3.cc: Likewise.
2687         * testsuite/23_containers/list/operators/1.cc: Likewise.
2688         * testsuite/23_containers/list/operators/2.cc: Likewise.
2689         * testsuite/23_containers/list/operators/3.cc: Likewise.
2690         * testsuite/23_containers/list/operators/4.cc: Likewise.
2691         * testsuite/23_containers/map/insert/1.cc: Likewise.
2692         * testsuite/23_containers/map/invalidation/1.cc: Likewise.
2693         * testsuite/23_containers/map/invalidation/2.cc: Likewise.
2694         * testsuite/23_containers/map/modifiers/swap.cc: Likewise.
2695         * testsuite/23_containers/map/operators/1.cc: Likewise.
2696         * testsuite/23_containers/multimap/invalidation/1.cc: Likewise.
2697         * testsuite/23_containers/multimap/invalidation/2.cc: Likewise.
2698         * testsuite/23_containers/multimap/modifiers/swap.cc: Likewise.
2699         * testsuite/23_containers/multiset/insert/1.cc: Likewise.
2700         * testsuite/23_containers/multiset/insert/2.cc: Likewise.
2701         * testsuite/23_containers/multiset/invalidation/1.cc: Likewise.
2702         * testsuite/23_containers/multiset/invalidation/2.cc: Likewise.
2703         * testsuite/23_containers/multiset/modifiers/swap.cc: Likewise.
2704         * testsuite/23_containers/priority_queue/members/7161.cc: Likewise.
2705         * testsuite/23_containers/queue/members/7157.cc: Likewise.
2706         * testsuite/23_containers/set/insert/1.cc: Likewise.
2707         * testsuite/23_containers/set/invalidation/1.cc: Likewise.
2708         * testsuite/23_containers/set/invalidation/2.cc: Likewise.
2709         * testsuite/23_containers/set/modifiers/swap.cc: Likewise.
2710         * testsuite/23_containers/stack/members/7158.cc: Likewise.
2711         * testsuite/23_containers/vector/bool/6886.cc: Likewise.
2712         * testsuite/23_containers/vector/capacity/1.cc: Likewise.
2713         * testsuite/23_containers/vector/capacity/8230.cc: Likewise.
2714         * testsuite/23_containers/vector/cons/1.cc: Likewise.
2715         * testsuite/23_containers/vector/cons/2.cc: Likewise.
2716         * testsuite/23_containers/vector/cons/3.cc: Likewise.
2717         * testsuite/23_containers/vector/cons/6513.cc: Likewise.
2718         * testsuite/23_containers/vector/element_access/1.cc: Likewise.
2719         * testsuite/23_containers/vector/invalidation/1.cc: Likewise.
2720         * testsuite/23_containers/vector/invalidation/2.cc: Likewise.
2721         * testsuite/23_containers/vector/invalidation/3.cc: Likewise.
2722         * testsuite/23_containers/vector/invalidation/4.cc: Likewise.
2723         * testsuite/23_containers/vector/modifiers/1.cc: Likewise.
2724         * testsuite/23_containers/vector/modifiers/2.cc: Likewise.
2725         * testsuite/23_containers/vector/modifiers/swap.cc: Likewise.
2726         * testsuite/23_containers/vector/resize/1.cc: Likewise.
2727         * testsuite/24_iterators/back_insert_iterator.cc: Likewise.
2728         * testsuite/24_iterators/front_insert_iterator.cc: Likewise.
2729         * testsuite/24_iterators/insert_iterator.cc: Likewise.
2730         * testsuite/24_iterators/iterator.cc: Likewise.
2731         * testsuite/25_algorithms/copy/1.cc: Likewise.
2732         * testsuite/25_algorithms/copy/2.cc: Likewise.
2733         * testsuite/25_algorithms/copy/3.cc: Likewise.
2734         * testsuite/25_algorithms/copy/4.cc: Likewise.
2735         * testsuite/25_algorithms/equal.cc: Likewise.
2736         * testsuite/25_algorithms/fill/1.cc: Likewise.
2737         * testsuite/25_algorithms/fill/2.cc: Likewise.
2738         * testsuite/25_algorithms/min_max.cc: Likewise.
2739         * testsuite/25_algorithms/rotate.cc: Likewise.
2740         * testsuite/25_algorithms/unique/1.cc: Likewise.
2741         * testsuite/25_algorithms/unique/2.cc: Likewise.
2742         * testsuite/27_io/basic_filebuf/seekpos/wchar_t/9874.cc: Likewise.
2743         * testsuite/ext/concept_checks.cc: Likewise.
2744         * testsuite/ext/hash_map/1.cc: Likewise.
2745         * testsuite/ext/hash_set/1.cc: Likewise.
2746         * testsuite/ext/rope/1.cc: Likewise.
2747         * testsuite/ext/rope/2.cc: Likewise.
2748         * testsuite/ext/rope/3.cc: Likewise.
2749         * testsuite/thread/pthread1.cc: Likewise.
2750         * testsuite/thread/pthread4.cc: Likewise.
2751         * testsuite/thread/pthread5.cc: Likewise.
2752         * testsuite/thread/pthread6.cc: Likewise.
2753         * testsuite/thread/pthread7-rope.cc: Likewise.
2754
2755 2005-03-15  Zack Weinberg  <zack@codesourcery.com>
2756
2757         * include/Makefile.am (c++config.h): Depend on DATESTAMP from gcc
2758         subdirectory.  Generate #define of __GLIBCXX__ from contents of
2759         that file.
2760         * include/Makefile.in: Regenerate.
2761         * include/bits/c++config: Do not define __GLIBCXX__.
2762
2763 2005-03-15  Paolo Carlini  <pcarlini@suse.de>
2764
2765         PR libstdc++/20352
2766         * include/std/std_complex.h (pow(const complex<_Tp>&,
2767         const _Tp&)): On non-c99 platforms, don't try to compute
2768         log of complex zero.
2769
2770 2005-03-10  Ben Elliston  <bje@au.ibm.com>
2771
2772         * testsuite/22_locale/locale/cons/12658_thread-1.cc: Don't XFAIL
2773         on GNU/Linux.
2774
2775 2005-03-07  Paolo Carlini  <pcarlini@suse.de>
2776
2777         * include/tr1/type_traits (is_polymorphic): Don't forget
2778         the virtual destructor, thus avoiding warnings.
2779         * testsuite/testsuite_tr1.h (class AbstractClass,
2780         class PolymorphicClass): Likewise.
2781
2782 2005-03-07  Paolo Carlini  <pcarlini@suse.de>
2783
2784         * include/std/std_complex.h (pow(const complex<_Tp>&,
2785         const complex<_Tp>&)): Dispatch to either __complex_pow(__x.__rep(),
2786         __y.__rep()) or __complex_pow(__x, __y) depending on the macro
2787         _GLIBCXX_USE_C99_COMPLEX.
2788
2789 2005-03-07  Paolo Carlini  <pcarlini@suse.de>
2790
2791         * include/std/std_fstream.h (basic_fstream<>::open,
2792         basic_ifstream<>::open, basic_ofstream<>::open): Implement the
2793         resolution of DR 409 [Ready], call clear() on success.
2794         * docs/html/ext/howto.html: Add an entry for DR 409.
2795         * docs/html/faq/index.html (4_4): Clarify the new behavior.
2796         * testsuite/27_io/basic_ifstream/open/char/1.cc: Adjust.
2797         * testsuite/27_io/basic_ofstream/open/char/1.cc: Likewise.
2798
2799 2005-03-05  Joseph S. Myers  <joseph@codesourcery.com>
2800
2801         * testsuite/22_locale/collate/compare/wchar_t/2.cc,
2802         testsuite/22_locale/collate/compare/wchar_t/wrapped_env.cc,
2803         testsuite/22_locale/collate/compare/wchar_t/wrapped_locale.cc,
2804         testsuite/22_locale/collate/hash/wchar_t/2.cc,
2805         testsuite/22_locale/collate/hash/wchar_t/wrapped_env.cc,
2806         testsuite/22_locale/collate/hash/wchar_t/wrapped_locale.cc,
2807         testsuite/22_locale/collate/transform/wchar_t/2.cc,
2808         testsuite/22_locale/collate/transform/wchar_t/wrapped_env.cc,
2809         testsuite/22_locale/collate/transform/wchar_t/wrapped_locale.cc:
2810         XFAIL on *-*-hpux11.23.
2811
2812 2005-03-04  Paolo Carlini  <pcarlini@suse.de>
2813
2814         * include/tr1/type_traits: Add is_base_of.
2815         * testsuite/tr1/4_metaprogramming/relationships_between_types/
2816         is_base_of/is_base_of.cc: New.
2817         * testsuite/tr1/4_metaprogramming/relationships_between_types/
2818         is_base_of/typedefs.cc: Likewise.
2819
2820 2005-03-03  Benjamin Kosnik  <bkoz@redhat.com>
2821
2822         * include/tr1/functional: Convert relative path.
2823
2824         * docs/doxygen/user.cfg.in: Add tr1 includes.
2825
2826 2005-03-03  Paolo Carlini  <pcarlini@suse.de>
2827
2828         * include/tr1/type_traits: Implemenet is_polymorphic.
2829         (is_empty): Minor tweaks.
2830         * testsuite/testsuite_tr1.h: Add test types.
2831         * testsuite/tr1/4_metaprogramming/type_properties/
2832         is_polymorphic/is_polymorphic.cc: New.
2833         * testsuite/tr1/4_metaprogramming/type_properties/
2834         is_polymorphic/typedefs.cc: Likewise.
2835         * testsuite/tr1/4_metaprogramming/composite_type_traits/
2836         is_union_or_class/is_union_or_class.cc: Add tests.
2837
2838 2005-03-02  Douglas Gregor  <doug.gregor@gmail.com>
2839
2840         * include/tr1/functional (_Has_result_type): Cleanup.
2841         (_Result_of_impl): Handle member data pointers correctly.
2842         (reference_wrapper): Support invocation.
2843         Move repetition code into new file include/tr1/repeat.h.
2844         * include/tr1/functional_iterate.h (reference_wrapper): Support
2845         invocation.  Cleanup long lines.
2846         * include/tr1/ref_wrap_iterate.h (reference_wrapper): Declare
2847         invocation operators.
2848         * include/tr1/repeat.h: Code repetition header.
2849         * include/Makefile.am: Add ref_wrap_iterate.h, repeat.h.
2850         * include/Makefile.in: Add ref_wrap_iterate.h, repeat.h.
2851         * testsuite/tr1/3_function_objects/reference_wrapper/invoke.cc:
2852         New test of reference_wrapper invocation.
2853         * testsuite/tr1/3_function_objects/reference_wrapper/typedefs.cc:
2854         New test of reference_wrapper typedefs and base classes.
2855         * testsuite/tr1/3_function_objects/result_of.cc: Trivial cleanup
2856         (e-mail address).
2857
2858 2005-03-02  Douglas Gregor  <doug.gregor@gmail.com>
2859
2860         * include/tr1/function (result_of): New class template.
2861         * include/tr1/functional/iterator.h: Implementation of TR1
2862         result_of.
2863         * testsuite/tr1/3_function_objects/result_of.cc: New test
2864
2865 2005-03-01  Vladimir Merzliakov  <wanderer@rsu.ru>
2866
2867         * testsuite/26_numerics/cmath/c99_classification_macros_c.cc: Tweak.
2868
2869 2005-02-28  Benjamin Kosnik  <bkoz@redhat.com>
2870
2871         * testsuite/tr1/2_general_utilities/memory/shared_ptr/
2872         cons/auto_ptr_neg.cc: Correct line numbers.
2873
2874         * testsuite/testsuite_abi.cc: Add CXXABI_1.3.1.
2875
2876 2005-02-28  Jonathan Wakely  <redi@gcc.gnu.org>
2877
2878         * include/tr1/memory: Replace checked_deleter with (unchecked)
2879         _Sp_deleter as GCC warns about delete on incomplete types anyway.
2880
2881 2005-02-28  Jonathan Wakely  <redi@gcc.gnu.org>
2882
2883         * include/tr1/memory: Add missing "inline" to __throw_bad_weak_ptr.
2884
2885 2005-02-28  Hans-Peter Nilsson  <hp@axis.com>
2886
2887         PR target/19065
2888         * config/cpu/cris/atomicity.h (__exchange_and_add): In asm, use
2889         'Q' constraint, not 'm'.
2890
2891 2005-02-26  Earl Chew  <earl_chew@agilent.com>
2892             Christopher Jefferson  <chris@bubblescope.net>
2893
2894         * include/bits/stl_tree.h (_Rb_tree<>::_M_insert): Don't leak
2895         memory if _M_key_compare throws.
2896
2897 2005-02-25  Paolo Carlini  <pcarlini@suse.de>
2898
2899         * include/tr1/type_traits: Add the trivial is_union and is_class;
2900         add the __is_union_or_class extension.
2901         (is_enum, is_empty): Use the latter.
2902         * include/tr1/type_traits_fwd.h: Add __is_union_or_class.
2903         * testsuite/testsuite_tr1.h: Add UnionType; trivial formatting
2904         fixes.
2905         * testsuite/tr1/4_metaprogramming/composite_type_traits/
2906         is_union_or_class/is_union_or_class.cc: New.
2907         * testsuite/tr1/4_metaprogramming/composite_type_traits/
2908         is_union_or_class/typedefs.cc: Likewise.
2909
2910 2005-02-24  Benjamin Kosnik  <bkoz@redhat.com>
2911
2912         * testsuite/tr1/6_containers/unordered/instantiate/hash.cc: Guard
2913         wchar_t use with _GLIBCXX_USE_WCHAR_T.
2914
2915 2005-02-24  Benjamin Kosnik  <bkoz@redhat.com>
2916
2917         * include/std/std_complex.h: _GLIBCXX_USE_C99_COMPLEX_MATH to
2918         _GLIBCXX_USE_C99_COMPLEX.
2919         * acinclude.m4: Same.
2920         * acconfig.h: Same.
2921         * configure: Regenerate.
2922         * config.h.in: Same.
2923
2924 2005-02-24  Paolo Carlini  <pcarlini@suse.de>
2925
2926         * include/tr1/functional (mem_fn): Avoid _T, badname on
2927         Darwin.
2928
2929 2005-02-23  Douglas Gregor  <doug.gregor@gmail.com>
2930
2931         * include/tr1/functional (function): New class template.
2932         (mem_fn): New function template.
2933         Implementations of TR1 function and mem_fn facilities.
2934         * include/tr1/functional_iterate.h: Implementations of TR1
2935         function and mem_fn facilities.
2936         * testsuite/tr1/3_function_objects/function/1.cc: New
2937         test of std::tr1::function.
2938         * testsuite/tr1/3_function_objects/function/2.cc: New
2939         test of std::tr1::function.
2940         * testsuite/tr1/3_function_objects/function/3.cc: New
2941         test of std::tr1::function.
2942         * testsuite/tr1/3_function_objects/function/4.cc: New
2943         test of std::tr1::function.
2944         * testsuite/tr1/3_function_objects/function/5.cc: New
2945         test of std::tr1::function.
2946         * testsuite/tr1/3_function_objects/function/6.cc: New
2947         test of std::tr1::function.
2948         * testsuite/tr1/3_function_objects/function/7.cc: New
2949         test of std::tr1::function.
2950         * testsuite/tr1/3_function_objects/function/8.cc: New
2951         test of std::tr1::function.
2952         * testsuite/tr1/3_function_objects/function/9.cc: New
2953         test of std::tr1::function.
2954         * testsuite/tr1/3_function_objects/mem_fn.cc: New test of
2955         std::tr1::mem_fn.
2956
2957 2005-02-23  Paolo Carlini  <pcarlini@suse.de>
2958
2959         * include/tr1/type_traits: Implement is_convertible.
2960         * testsuite/tr1/4_metaprogramming/relationships_between_types/
2961         is_convertible/is_convertible.cc: New.
2962         * testsuite/tr1/4_metaprogramming/relationships_between_types/
2963         is_convertible/typedefs.cc: Likewise.
2964         * testsuite/testsuite_tr1.h: Add class DerivedType.
2965
2966         * include/tr1/type_traits (is_function): Don't mistake references
2967         to function types for function types.
2968         * testsuite/tr1/4_metaprogramming/primary_type_categories/
2969         is_function/is_function.cc: Add testcase.
2970
2971 2005-02-22  Benjamin Kosnik  <bkoz@redhat.com>
2972
2973         * scripts/check_performance: Tweaks.
2974
2975         * testsuite/27_io/basic_ostream/inserters_other/wchar_t/2.cc: Name
2976         output file with extension that clean rules can find.
2977
2978 2005-02-22  Richard Henderson  <rth@redhat.com>
2979
2980         PR libstdc++/20091
2981         * libsupc++/eh_catch.cc (__cxa_begin_catch): Don't special case
2982         decrement of uncaughtExceptions for rethrow.
2983
2984 2005-02-22  Paolo Carlini  <pcarlini@suse.de>
2985
2986         * include/tr1/functional: Fix License to GPL with exception.
2987         * include/tr1/hashtable: Likewise.
2988         * include/tr1/tuple: Likewise.
2989         * include/tr1/type_traits: Likewise.
2990         * include/tr1/type_traits_fwd.h: Likewise.
2991         * include/tr1/unordered_map: Likewise.
2992         * include/tr1/unordered_set: Likewise.
2993         * include/tr1/utility: Likewise.
2994
2995 2005-02-22  Paolo Carlini  <pcarlini@suse.de>
2996
2997         * testsuite/tr1/2_general_utilities/memory/shared_ptr/assign/
2998         auto_ptr_neg.cc: Add missing dg-do compile directive.
2999         * testsuite/tr1/2_general_utilities/memory/shared_ptr/assign/
3000         auto_ptr_rvalue_neg.cc: Likewise.
3001         * testsuite/tr1/2_general_utilities/memory/shared_ptr/assign/
3002         shared_ptr_neg.cc: Likewise.
3003         * testsuite/tr1/2_general_utilities/memory/shared_ptr/cons/
3004         auto_ptr_neg.cc: Likewise.
3005         * testsuite/tr1/2_general_utilities/memory/shared_ptr/modifiers/
3006         reset_neg.cc: Likewise.
3007         * testsuite/tr1/2_general_utilities/memory/shared_ptr/modifiers/
3008         swap_neg.cc: Likewise.
3009
3010 2005-02-22  Jonathan Wakely  <redi@gcc.gnu.org>
3011
3012         * include/Makefile.am, include/Makefile.in: Fix accidental extra
3013         change from previous commit.
3014
3015 2005-02-21  Jonathan Wakely  <redi@gcc.gnu.org>
3016
3017         * include/tr1/memory: New file.
3018         * include/Makefile.am, include/Makefile.in: Add new TR1 header.
3019         * testsuite/tr1/2_general_utilities/memory/
3020         enable_shared_from_this/not_shared.cc: New test.
3021         * testsuite/tr1/2_general_utilities/memory/
3022         enable_shared_from_this/not_shared2.cc: New test.
3023         * testsuite/tr1/2_general_utilities/memory/
3024         enable_shared_from_this/not_shared3.cc: New test.
3025         * testsuite/tr1/2_general_utilities/memory/
3026         enable_shared_from_this/shared.cc: New test.
3027         * testsuite/tr1/2_general_utilities/memory/
3028         enable_shared_from_this/still_shared.cc: New test.
3029         * testsuite/tr1/2_general_utilities/memory/
3030         shared_ptr/assign/assign.cc: New test.
3031         * testsuite/tr1/2_general_utilities/memory/
3032         shared_ptr/assign/auto_ptr.cc: New test.
3033         * testsuite/tr1/2_general_utilities/memory/
3034         shared_ptr/assign/auto_ptr_neg.cc: New test.
3035         * testsuite/tr1/2_general_utilities/memory/
3036         shared_ptr/assign/auto_ptr_rvalue_neg.cc: New test.
3037         * testsuite/tr1/2_general_utilities/memory/
3038         shared_ptr/assign/shared_ptr.cc: New test.
3039         * testsuite/tr1/2_general_utilities/memory/
3040         shared_ptr/assign/shared_ptr_neg.cc: New test.
3041         * testsuite/tr1/2_general_utilities/memory/
3042         shared_ptr/comparison/cmp.cc: New test.
3043         * testsuite/tr1/2_general_utilities/memory/
3044         shared_ptr/cons/auto_ptr.cc: New test.
3045         * testsuite/tr1/2_general_utilities/memory/
3046         shared_ptr/cons/auto_ptr_neg.cc: New test.
3047         * testsuite/tr1/2_general_utilities/memory/
3048         shared_ptr/cons/copy.cc: New test.
3049         * testsuite/tr1/2_general_utilities/memory/
3050         shared_ptr/cons/default.cc: New test.
3051         * testsuite/tr1/2_general_utilities/memory/
3052         shared_ptr/cons/pointer.cc: New test.
3053         * testsuite/tr1/2_general_utilities/memory/
3054         shared_ptr/cons/weak_ptr.cc: New test.
3055         * testsuite/tr1/2_general_utilities/memory/
3056         shared_ptr/cons/weak_ptr_expired.cc: New test.
3057         * testsuite/tr1/2_general_utilities/memory/
3058         shared_ptr/dest/dest.cc: New test.
3059         * testsuite/tr1/2_general_utilities/memory/
3060         shared_ptr/misc/io.cc: New test.
3061         * testsuite/tr1/2_general_utilities/memory/
3062         shared_ptr/misc/swap.cc: New test.
3063         * testsuite/tr1/2_general_utilities/memory/
3064         shared_ptr/modifiers/reset.cc: New test.
3065         * testsuite/tr1/2_general_utilities/memory/
3066         shared_ptr/modifiers/reset_neg.cc: New test.
3067         * testsuite/tr1/2_general_utilities/memory/
3068         shared_ptr/modifiers/swap.cc: New test.
3069         * testsuite/tr1/2_general_utilities/memory/
3070         shared_ptr/modifiers/swap_neg.cc: New test.
3071         * testsuite/tr1/2_general_utilities/memory/
3072         shared_ptr/observers/bool_conv.cc: New test.
3073         * testsuite/tr1/2_general_utilities/memory/
3074         shared_ptr/observers/get.cc: New test.
3075         * testsuite/tr1/2_general_utilities/memory/
3076         shared_ptr/observers/unique.cc: New test.
3077         * testsuite/tr1/2_general_utilities/memory/
3078         shared_ptr/observers/use_count.cc: New test.
3079
3080 2005-02-21  Paolo Carlini  <pcarlini@suse.de>
3081
3082         * include/tr1/type_traits (is_member_function_pointer):
3083         Remove ugly workaround for c++/19076.
3084
3085 2005-02-21  Paolo Carlini  <pcarlini@suse.de>
3086
3087         * include/bits/basic_string.tcc (_Rep::_M_destroy): Don't
3088         check for this == &_S_empty_rep, it's always false, here.
3089
3090 2005-02-19  Matt Austern  <austern@gmail.com>
3091
3092         * include/tr1/functional (tr1_hashtable_define_trivial_hash): Make
3093         hash<T>::operator() a const member function for T a fundamental type
3094         * include/tr1/hashtable (extract1st::operator()): Declare const.
3095         (hash_code_base): Declare all member functions const
3096         (hashtable::find): fix call to this->bucket_count()
3097         (hashtable::count): Likewise.
3098         (hashtable::equal_range): m_incr_bucket applies to iterator, not node.
3099         * testsuite/tr1/6_containers/unordered/find/set1.cc: New test.
3100         * testsuite/tr1/6_containers/unordered/find/map1.cc: New test.
3101         * testsuite/tr1/6_containers/unordered/find/multimap1.cc: New test.
3102         * testsuite/tr1/6_containers/unordered/find/multiset1.cc: New test.
3103
3104 2005-02-19  Hans-Peter Nilsson  <hp@axis.com>
3105
3106         PR libstdc++/20071
3107         * include/tr1/functional (hash<std::wstring>): Wrap in #ifdef
3108         _GLIBCXX_USE_WCHAR_T.
3109
3110 2005-02-18  Richard Henderson  <rth@redhat.com>
3111
3112         PR libstdc++/10606
3113         * config/linker-map.gnu (CXXABI_1.3.1): Add __cxa_get_exception_ptr.
3114         * libsupc++/eh_alloc.cc (__cxa_allocate_exception): Increment
3115         uncaughtExceptions here instead of ...
3116         * libsupc++/eh_throw.cc (__cxa_throw) ... here.
3117         (__cxa_rethrow): Increment uncaughtExceptions here instead of ...
3118         * libsupc++/eh_catch.cc (__cxa_end_catch): ... here.
3119         (__cxa_get_exception_ptr): New.
3120         * libsupc++/unwind-cxx.h (__cxa_get_exception_ptr): Declare.
3121
3122 2005-02-18  Matt Austern  <austern@apple.com>
3123
3124         * testsuite/tr1/6_containers/unordered/insert/array_syntax.cc: Fix
3125         test case to use assignment instead of ==
3126         * testsuite/tr1/6_containers/unordered/insert/map_range.cc: New test.
3127         * testsuite/tr1/6_containers/unordered/insert/multimap_range.cc: New test.
3128         * testsuite/tr1/6_containers/unordered/insert/multiset_range.cc: New test.
3129         * testsuite/tr1/6_containers/unordered/insert/set_range.cc: New test.
3130
3131 2005-02-18  Eric Botcazou  <ebotcazou@libertysurf.fr>
3132
3133         * testsuite/thread/pthread1.cc: Do not invoke pthread_setconcurrency
3134         on Solaris 2.6 and below.
3135         * testsuite/thread/pthread2.cc: Likewise.
3136         * testsuite/thread/pthread3.cc: Likewise.
3137         * testsuite/thread/pthread4.cc: Likewise.
3138         * testsuite/thread/pthread5.cc: Likewise.
3139         * testsuite/thread/pthread6.cc: Likewise.
3140         * testsuite/thread/pthread7-rope.cc: Likewise.
3141
3142 2005-02-17  Matt Austern  <austern@apple.com>
3143
3144         * include/tr1/functional (hash): New function object.
3145         * include/tr1/hashtable: New file.
3146         * include/tr1/unordered_set: New file.
3147         * include/tr1/unordered_map: New file.
3148         * include/Makefile.am: Add three new TR1 headers.
3149         * include/Makefile.in: Likewise.
3150         * testsuite/tr1/6_containers/unordered/insert/array_syntax.cc: New test.
3151         * testsuite/tr1/6_containers/unordered/insert/map_single.cc: New test.
3152         * testsuite/tr1/6_containers/unordered/insert/multimap_single.cc: New test.
3153         * testsuite/tr1/6_containers/unordered/insert/multiset_single.cc: New test.
3154         * testsuite/tr1/6_containers/unordered/insert/set_single.cc: New test.
3155         * testsuite/tr1/6_containers/unordered/instantiate/hash.cc: New test.
3156         * testsuite/tr1/6_containers/unordered/instantiate/map.cc: New test.
3157         * testsuite/tr1/6_containers/unordered/instantiate/multimap.cc: New test.
3158         * testsuite/tr1/6_containers/unordered/instantiate/multiset.cc: New test.
3159         * testsuite/tr1/6_containers/unordered/instantiate/set.cc: New test.
3160
3161 2005-02-16  Paolo Carlini  <pcarlini@suse.de>
3162
3163         * testsuite/23_containers/set/modifiers/16728.cc:
3164         Remove redundant include <testsuite_performance.h>.
3165
3166 2005-02-16  Paolo Carlini  <pcarlini@suse.de>
3167
3168         PR libstdc++/19829
3169         * testsuite/21_strings/basic_string/find/char/3.cc: Fix the test
3170         at line #66 to not access str_lit01 beyond its end.
3171         * testsuite/21_strings/basic_string/find/wchar_t/3.cc: Likewise.
3172
3173 2005-02-15  Paolo Carlini  <pcarlini@suse.de>
3174             Jon Grimm  <jgrimm2@us.ibm.com>
3175
3176         PR libstdc++/19955
3177         * include/bits/locale_facets.h (ctype<char>::_M_narrow_init()):
3178         Fix the logic setting _M_narrow_ok: first check whether the
3179         transformation is trivial with a dflt == 0, then deal with the
3180         special case of zero.
3181         * testsuite/22_locale/ctype/narrow/char/19955.cc: New.
3182
3183         * include/bits/locale_facets.h (ctype<char>::_M_widen_init()):
3184         Tweak consistently to use memcmp; minor formatting fixes.
3185
3186 2005-02-15  Jakub Jelinek  <jakub@redhat.com>
3187
3188         PR libstdc++/19946
3189         * testsuite/demangle/abi_examples/01.cc (main): Adjust for 2005-02-13
3190         demangler change.
3191         * testsuite/demangle/abi_examples/02.cc (main): Likewise.
3192
3193 2005-02-13  Richard Guenther  <rguenth@gcc.gnu.org>
3194             Paolo Carlini  <pcarlini@suse.de>
3195
3196         PR libstdc++/11706
3197         * include/c_std/std_cmath.h (pow): Use __builtin_powi[lf]
3198         for integer overloads.
3199
3200         * testsuite/26_numerics/cmath/powi.cc: New.
3201
3202 2005-02-11  Janis Johnson  <janis187@us.ibm.com>
3203
3204         * testsuite/26_numerics/complex/13450.cc: Fix XFAIL selector.
3205         * testsuite/26_numerics/complex/complex_value.cc: Ditto.
3206         * testsuite/26_numerics/complex/pow.cc: Ditto.
3207
3208         * testsuite/lib/libstdc++.exp: Load target-supports-dg.exp.
3209         * testsuite/26_numerics/complex/13450.cc: XFAIL for broken_cplxf_arg.
3210         * testsuite/26_numerics/complex/complex_value.cc: Ditto.
3211         * testsuite/26_numerics/complex/pow.cc: Ditto.
3212
3213 2005-02-09  Mike Stump  <mrs@apple.com>
3214
3215         * libsupc++/del_op.cc: Don't include cstdlib when !_GLIBCXX_HOSTED.
3216
3217 2005-02-09  Janis Johnson  <janis187@us.ibm.com>
3218
3219         * testsuite/ext/array_allocator/2.cc: XFAIL for powerpc*-*-linux*.
3220
3221 2005-02-08  Mark Mitchell  <mark@codesourcery.com>
3222
3223         * config/linker-map.gnu (GLIBCXX_3.4): Add _ZNSdC* and _ZNSdD*.
3224
3225 2005-02-07  Loren J. Rittle  <ljrittle@acm.org>
3226
3227         * testsuite/27_io/basic_istream/getline/wchar_t/5.cc: Make buf static.
3228         * testsuite/27_io/basic_stringbuf/setbuf/wchar_t/4.cc: Make ref and
3229         src static.
3230
3231 2005-02-02  Brad Spencer  <spencer@infointeractive.com>
3232
3233         * debug.html: Fix broken tags.
3234         * documentation.html: Same.
3235
3236 2005-02-02  Andreas Jaeger  <aj@suse.de>
3237
3238         * testsuite/lib/libstdc++.exp: Revert Geoffrey Keating's patch
3239         from 2005-01-28.
3240         * testsuite/Makefile.am: Likewise.
3241         * testsuite/Makefile.in: Likewise.
3242
3243 2005-02-01  Paolo Carlini  <pcarlini@suse.de>
3244
3245         * include/bits/cpp_type_traits.h: Rename _M_type fields to
3246         __value, except for __enable_if, _M_type -> __type, consistently
3247         with the other traits.
3248         * include/bits/stl_algobase.h: Tweak consistently.
3249         * include/bits/stl_tree.h: Likewise.
3250         * include/bits/valarray_array.h: Likewise.
3251         * include/c_std/std_cmath.h: Likewise.
3252         * include/debug/safe_iterator.h: Likewise.
3253         * include/std/std_complex.h: Likewise.
3254
3255 2005-01-31  Brad Spencer  <spencer@infointeractive.com>
3256
3257         * crossconfig.m4: Repair Solaris cross bits for strtold and strtof.
3258         * configure: Regenerated.
3259
3260 2005-01-31  Mark Mitchell  <mark@codesourcery.com>
3261
3262         * include/std/std_limits.h (numeric_limits<float>::has_denorm):
3263         Add required cast.
3264         (numeric_limits<double>::has_denorm): Likewise.
3265         (numeric_limits<long double>::has_denorm): Likewise.
3266
3267 2005-01-31  Paolo Carlini  <pcarlini@suse.de>
3268             Gabriel Dos Reis  <gdr@integrable-solutions.net>
3269
3270         * include/bits/cpp_type_traits.h: Add types to the structs thus
3271         making type_traits.h redundant; exploit new __truth_type and
3272         __traitor helpers.
3273         * include/bits/type_traits.h: Remove.
3274         * include/Makefile.am: Update.
3275         * include/Makefile.in: Regenerate.
3276         * include/backward/tempbuf.h: Include cpp_type_traits.h instead.
3277         * include/bits/basic_string.h (replace(iterator, iterator,
3278         _InputIterator, _InputIterator), _S_construct(_InIterator,
3279         _InIterator, const _Alloc&)): Use __is_integer instead.
3280         * include/bits/stl_bvector.h (vector(_InputIterator,
3281         _InputIterator, const allocator_type&), assign(_InputIterator,
3282         _InputIterator), insert(iterator, _InputIterator, _InputIterator)):
3283         Likewise.
3284         * include/bits/stl_construct.h (_Destroy(_ForwardIterator,
3285         _ForwardIterator)): Use __is_scalar.
3286         * include/bits/stl_deque.h (deque(_InputIterator, _InputIterator,
3287         const allocator_type&), assign(_InputIterator, _InputIterator),
3288         insert(iterator, _InputIterator, _InputIterator)): Use __is_integer.
3289         * include/bits/stl_list.h (assign(_InputIterator, _InputIterator),
3290         insert(iterator, _InputIterator, _InputIterator)): Likewise.
3291         * include/bits/stl_tempbuf.h (_Temporary_buffer(_ForwardIterator,
3292         _ForwardIterator)): Use __is_scalar.
3293         * include/bits/stl_uninitialized.h (uninitialized_copy(_InputIterator,
3294         _InputIterator, _ForwardIterator), uninitialized_fill(_ForwardIterator,
3295         _ForwardIterator, const _Tp&), uninitialized_fill_n(_ForwardIterator,
3296         _Size, const _Tp&)): Likewise.
3297         * include/bits/stl_vector.h (vector(_InputIterator, _InputIterator,
3298         const allocator_type&), assign(_InputIterator, _InputIterator),
3299         insert(iterator, _InputIterator, _InputIterator)): Use __is_integer.
3300         * include/debug/debug.h (__valid_range(const _InputIterator&,
3301         const _InputIterator&)): Use __is_integer.
3302         * include/ext/slist (assign(_InputIterator, _InputIterator)): Likewise.
3303         * include/std/std_string.h: Include cpp_type_traits.h instead.
3304
3305 2005-01-30  Paolo Carlini  <pcarlini@suse.de>
3306
3307         PR libstdc++/19642
3308         * config/locale/generic/c_locale.h (__convert_from_v): Switch only
3309         LC_NUMERIC, and only when actually != "C".
3310
3311 2005-01-28  Paolo Carlini  <pcarlini@suse.de>
3312
3313         * include/tr1/type_traits (is_function): Minor consistency tweaks.
3314
3315 2005-01-28  Geoffrey Keating  <geoffk@apple.com>
3316
3317         * testsuite/lib/libstdc++.exp (libstdc++_init): Search the path
3318         for the compiler.  Don't set cxxflags.
3319         (v3_target_compile): Search for libv3test.a relative to $objdir.
3320         (lsearch_all_inline): New.
3321         (lsearch_all_inline_not): New.
3322         (v3-list-tests): Rewrite to not need generated files.
3323         * testsuite/Makefile.am (IGNORE_WCHAR_T): New.
3324         (IGNORE_THREAD): New.
3325         (TESTS_TO_IGNORE): New.
3326         (site.exp): Set tests_to_ignore, cxxflags.
3327         * aclocal.m4: Regenerate.
3328         * Makefile.in: Regenerate.
3329         * libmath/Makefile.in: Likewise.
3330         * libsupc++/Makefile.in: Likewise.
3331         * po/Makefile.in: Likewise.
3332         * src/Makefile.in: Likewise.
3333         * testsuite/Makefile.in: Likewise.
3334
3335 2005-01-28  Paolo Carlini  <pcarlini@suse.de>
3336
3337         * include/tr1/type_traits: Implement is_empty.
3338         * testsuite/tr1/4_metaprogramming/type_properties/is_empty/
3339         is_empty.cc: New.
3340         * testsuite/tr1/4_metaprogramming/type_properties/is_empty/
3341         typedefs.cc: Likewise.
3342
3343         * include/tr1/type_traits (__is_abstract_helper): Simplify a bit.
3344
3345 2005-01-28  Paolo Carlini  <pcarlini@suse.de>
3346
3347         * include/tr1/type_traits: Implement is_abstract, by exploiting the
3348         resolution of DR core/337.
3349         * testsuite/testsuite_tr1.h: Add AbstractClass.
3350         * testsuite/tr1/4_metaprogramming/type_properties/is_abstract/
3351         is_abstract.cc: New.
3352         * testsuite/tr1/4_metaprogramming/type_properties/is_abstract/
3353         typedefs.cc: Likewise.
3354
3355         * include/tr1/type_traits (is_function): Rewrite, use the conversion
3356         F& -> F* instead, thus avoiding problems with abstract classes.
3357         * testsuite/tr1/4_metaprogramming/primary_type_categories/
3358         is_function/is_function.cc: Add a test for tricky AbstractClass.
3359
3360 2005-01-26  Paolo Carlini  <pcarlini@suse.de>
3361
3362         * include/ext/mt_allocator.h
3363         (struct __per_type_pool_policy<,, false>::_S_get_pool,
3364         struct __per_type_pool_policy<,, true>::_S_get_pool): Scale
3365         _M_chunk_size too with sizeof(_Tp), otherwise the allocator
3366         breaks down as soon as sizeof(_Tp) >~ _S_chunk_size / 128;
3367         reduce to 64 the multiplier for _M_max_bytes (safer wrt
3368         _Binmap_type being a short); trivial reformattings.
3369         * testsuite/ext/mt_allocator/check_allocate_big_per_type.cc: New.
3370
3371 2005-01-26  Paolo Carlini  <pcarlini@suse.de>
3372
3373         * acinclude.m4 ([GLIBCXX_ENABLE_C99]): Add ac_c99_complex
3374         to the final test for enable_c99, thus robustifying it; remove
3375         duplicate final test on ac_99_math.
3376         * configure: Regenerate.
3377
3378         * include/std/std_complex.h: Remove usages of the dead
3379         _GLIBCXX_BUGGY_COMPLEX macro.
3380
3381         * testsuite/26_numerics/cmath/19322.cc: Protect with
3382         _GLIBCXX_USE_C99_MATH instead of the stronger _GLIBCXX_USE_C99,
3383         since only C99 math facilities are involved.
3384         * testsuite/26_numerics/cmath/c99_classification_macros_c++.cc:
3385         Likewise.
3386
3387 2005-01-25  Loren J. Rittle  <ljrittle@acm.org>
3388
3389         * acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Map FreeBSD to darwin
3390         instead of generic.  Change autoconf report to "darwin or freebsd".
3391         * configure: Regenerate.
3392         * config/os/bsd/freebsd/ctype_inline.h (ctype<wchar_t>::do_is): Add.
3393         (ctype<wchar_t>::do_scan_is): Likewise.
3394         (ctype<wchar_t>::do_scan_not): Likewise.
3395
3396 2005-01-25  Benjamin Kosnik  <bkoz@redhat.com>
3397
3398         * acinclude.m4 (GLIBCXX_ENABLE_C99): Test for complex math
3399         functions, and enable _GLIBCXX_USE_C99_COMPLEX_MATH if they exist.
3400         * acconfig.h: Add _GLIBCXX_USE_C99_COMPLEX_MATH.
3401         * config.h.in: Regenerate.
3402         * configure: Regenerate.
3403         * include/std/std_complex.h: Protect complex builtins with
3404         _GLIBCXX_USE_C99_COMPLEX_MATH.
3405
3406 2005-01-24  Paolo Carlini  <pcarlini@suse.de>
3407
3408         * include/tr1/type_traits: Implement is_signed and is_unsigned.
3409         * testsuite/tr1/4_metaprogramming/type_properties/
3410         is_signed/is_signed.cc: New.
3411         * testsuite/tr1/4_metaprogramming/type_properties/
3412         is_signed/typedefs.cc: Likewise.
3413         * testsuite/tr1/4_metaprogramming/type_properties/
3414         is_unsigned/is_unsigned.cc: Likewise.
3415         * testsuite/tr1/4_metaprogramming/type_properties/
3416         is_unsigned/typedefs.cc: Likewise.
3417
3418 2005-01-23  Paolo Carlini  <pcarlini@suse.de>
3419
3420         * docs/html/ext/lwg-active.html, lwg-defects.html: Import Revision 34.
3421
3422 2005-01-23  Paolo Carlini  <pcarlini@suse.de>
3423
3424         * testsuite/27_io/basic_ostream/cons/wchar_t/9827.cc: New.
3425         * testsuite/27_io/basic_ostream/endl/wchar_t/1.cc: Likewise.
3426         * testsuite/27_io/basic_ostream/ends/wchar_t/1.cc: Likewise.
3427         * testsuite/27_io/basic_ostream/ends/wchar_t/2.cc: Likewise.
3428         * testsuite/27_io/basic_ostream/exceptions/wchar_t/9561.cc: Likewise.
3429         * testsuite/27_io/basic_ostream/flush/wchar_t/1.cc: Likewise.
3430         * testsuite/27_io/basic_ostream/flush/wchar_t/2.cc: Likewise.
3431         * testsuite/27_io/basic_ostream/flush/wchar_t/
3432         exceptions_badbit_throw.cc: Likewise.
3433         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3434         wchar_t/2.cc: Likewise.
3435         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3436         wchar_t/3.cc: Likewise.
3437         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3438         wchar_t/4.cc: Likewise.
3439         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3440         wchar_t/4402.cc: Likewise.
3441         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3442         wchar_t/5.cc: Likewise.
3443         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3444         wchar_t/6.cc: Likewise.
3445         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3446         wchar_t/9555-oa.cc: Likewise.
3447         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3448         wchar_t/exceptions_badbit_throw.cc: Likewise.
3449         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3450         wchar_t/exceptions_failbit_throw.cc: Likewise.
3451         * testsuite/27_io/basic_ostream/inserters_character/
3452         wchar_t/1.cc: Likewise.
3453         * testsuite/27_io/basic_ostream/inserters_character/
3454         wchar_t/2.cc: Likewise.
3455         * testsuite/27_io/basic_ostream/inserters_character/
3456         wchar_t/3.cc: Likewise.
3457         * testsuite/27_io/basic_ostream/inserters_character/
3458         wchar_t/4.cc: Likewise.
3459         * testsuite/27_io/basic_ostream/inserters_character/
3460         wchar_t/5.cc: Likewise.
3461         * testsuite/27_io/basic_ostream/inserters_character/
3462         wchar_t/6.cc: Likewise.
3463         * testsuite/27_io/basic_ostream/inserters_character/
3464         wchar_t/9555-oc.cc: Likewise.
3465         * testsuite/27_io/basic_ostream/inserters_other/
3466         wchar_t/1.cc: Likewise.
3467         * testsuite/27_io/basic_ostream/inserters_other/
3468         wchar_t/2.cc: Likewise.
3469         * testsuite/27_io/basic_ostream/inserters_other/
3470         wchar_t/3.cc: Likewise.
3471         * testsuite/27_io/basic_ostream/inserters_other/
3472         wchar_t/4.cc: Likewise.
3473         * testsuite/27_io/basic_ostream/inserters_other/
3474         wchar_t/5.cc: Likewise.
3475         * testsuite/27_io/basic_ostream/inserters_other/
3476         wchar_t/9318-out.cc: Likewise.
3477         * testsuite/27_io/basic_ostream/inserters_other/
3478         wchar_t/9424-out.cc: Likewise.
3479         * testsuite/27_io/basic_ostream/inserters_other/
3480         wchar_t/9555-oo.cc: Likewise.
3481         * testsuite/27_io/basic_ostream/inserters_other/wchar_t/
3482         error_failbit.cc: Likewise.
3483         * testsuite/27_io/basic_ostream/inserters_other/wchar_t/
3484         exceptions_badbit_throw.cc: Likewise.
3485         * testsuite/27_io/basic_ostream/inserters_other/wchar_t/
3486         exceptions_failbit_throw.cc: Likewise.
3487         * testsuite/27_io/basic_ostream/inserters_other/wchar_t/
3488         exceptions_null.cc: Likewise.
3489         * testsuite/27_io/basic_ostream/put/char/1.cc: Likewise.
3490         * testsuite/27_io/basic_ostream/put/wchar_t/1.cc: Likewise.
3491         * testsuite/27_io/basic_ostream/seekp/char/
3492         exceptions_badbit_throw.cc: Likewise.
3493         * testsuite/27_io/basic_ostream/seekp/wchar_t/
3494         2346-fstream.cc: Likewise.
3495         * testsuite/27_io/basic_ostream/seekp/wchar_t/
3496         2346-sstream.cc: Likewise.
3497         * testsuite/27_io/basic_ostream/seekp/wchar_t/
3498         exceptions_badbit_throw.cc: Likewise.
3499         * testsuite/27_io/basic_ostream/sentry/wchar_t/1.cc: Likewise.
3500         * testsuite/27_io/basic_ostream/sentry/wchar_t/2.cc: Likewise.
3501         * testsuite/27_io/basic_ostream/tellp/wchar_t/1.cc: Likewise.
3502         * testsuite/27_io/basic_ostream/tellp/wchar_t/2.cc: Likewise.
3503         * testsuite/27_io/basic_ostream/tellp/wchar_t/
3504         exceptions_badbit_throw.cc: Likewise.
3505         * testsuite/27_io/basic_ostream/write/wchar_t/1.cc: Likewise.
3506
3507         * testsuite/data/wostream_inserter_char-1.tst: Likewise.
3508         * testsuite/data/wostream_inserter_char-1.txt: Likewise.
3509         * testsuite/data/wostream_inserter_other-1.tst: Likewise.
3510         * testsuite/data/wostream_inserter_other-2.tst: Likewise.
3511         * testsuite/data/wostream_seeks-1.tst: Likewise.
3512
3513         * testsuite/27_io/basic_ostream/endl/char/1.cc: Minor tweaks.
3514         * testsuite/27_io/basic_ostream/ends/char/1.cc: Likewise.
3515         * testsuite/27_io/basic_ostream/exceptions/char/9561.cc: Likewise.
3516         * testsuite/27_io/basic_ostream/flush/char/1.cc: Likewise.
3517         * testsuite/27_io/basic_ostream/flush/char/2.cc: Likewise.
3518         * testsuite/27_io/basic_ostream/flush/char/
3519         exceptions_badbit_throw.cc: Likewise.
3520         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3521         char/2.cc: Likewise.
3522         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3523         char/3.cc: Likewise.
3524         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3525         char/4.cc: Likewise.
3526         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3527         char/4402.cc: Likewise.
3528         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3529         char/5.cc: Likewise.
3530         * testsuite/27_io/basic_ostream/inserters_arithmetic/
3531         char/6.cc: Likewise.
3532         * testsuite/27_io/basic_ostream/inserters_character/
3533         char/4.cc: Likewise.
3534         * testsuite/27_io/basic_ostream/inserters_other/char/
3535         2.cc: Likewise.
3536         * testsuite/27_io/basic_ostream/inserters_other/char/
3537         5.cc: Likewise.
3538         * testsuite/27_io/basic_ostream/inserters_other/char/
3539         error_failbit.cc: Likewise.
3540         * testsuite/27_io/basic_ostream/inserters_other/char/
3541         exceptions_badbit_throw.cc: Likewise.
3542         * testsuite/27_io/basic_ostream/inserters_other/char/
3543         exceptions_failbit_throw.cc: Likewise.
3544         * testsuite/27_io/basic_ostream/inserters_other/char/
3545         exceptions_null.cc: Likewise.
3546         * testsuite/27_io/basic_ostream/put/char/1.cc: Likewise.
3547         * testsuite/27_io/basic_ostream/seekp/char/
3548         exceptions_badbit_throw.cc: Likewise.
3549         * testsuite/27_io/basic_ostream/sentry/char/2.cc: Likewise.
3550         * testsuite/27_io/basic_ostream/write/char/1.cc: Likewise.
3551
3552 2005-01-23  Paolo Carlini  <pcarlini@suse.de>
3553
3554         * include/tr1/type_traits (aligned_storage): Use __aligned__ instead
3555         of aligned.
3556
3557 2005-01-23  Paolo Carlini  <pcarlini@suse.de>
3558             Andreas Jaeger  <aj@suse.de>
3559
3560         PR libstdc++/19343
3561         * include/bits/functexcept.h: Mark the helpers as 'noreturn'.
3562
3563 2005-01-21  Loren J. Rittle  <ljrittle@acm.org>
3564
3565         * testsuite/27_io/basic_filebuf/open/char/9507.cc: Allow
3566         lseek on fifo to succeed.  Thus, check for consistent report.
3567
3568 2005-01-21  Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
3569
3570         PR libstdc++/19510
3571         * include/bits/stl_list.h (_List_iterator): Initialize _M_node
3572         in constructor.
3573         (_List_const_iterator): Likewise.
3574         * include/bits/stl_tree.h (_Rb_tree_iterator): Likewise.
3575         (_Rb_tree_const_iterator): Likewise.
3576
3577         * testsuite/23_containers/map/operators/1_neg.cc: Adjust line numbers.
3578         * testsuite/23_containers/set/operators/1_neg.cc: Likewise.
3579
3580 2005-01-20  Benjamin Kosnik  <bkoz@redhat.com>
3581
3582         * testsuite/Makefile.am (check-compile): New.
3583         * testsuite/Makefile.in: Regenerate.
3584         * scripts/check_compile_time: New.
3585         * scripts/check_performance: Tweaks.
3586
3587 2005-01-19  Paolo Carlini  <pcarlini@suse.de>
3588
3589         PR libstdc++/19535
3590         * include/tr1/utility (struct __pair_get<1>::__get, __const_get):
3591         Fix typo in the return type.
3592         * testsuite/tr1/6_containers/utility/19535.cc: New.
3593
3594 2005-01-19  Loren J. Rittle  <ljrittle@acm.org>
3595
3596         * include/ext/array_allocator.h (array_allocator<>::allocate):
3597         Avoid __used.  Use __array_used instead.
3598         * docs/html/17_intro/BADNAMES: Add list for FreeBSD.
3599
3600 2005-01-18  David Edelsohn  <edelsohn@gnu.org>
3601
3602         * config/os/aix/os_defines.h (_XOPEN_SOURCE): Delete.
3603         (_XOPEN_SOURCE_EXTENDED): Delete.
3604
3605 2005-01-18  Benjamin Kosnik  <bkoz@redhat.com>
3606
3607         * testsuite/testsuite_performance.h (time_counter::start):
3608         Clear. Tweaks.
3609         (clear_counters): Inline.
3610         (start_counters): Inline.
3611         (stop_counters): Inline.
3612         * testsuite/performance/20_util/allocator/map_thread.cc: Return.
3613         * testsuite/performance/20_util/allocator/insert.cc: Remove bogus
3614         return, add return.
3615         * testsuite/performance/20_util/allocator/map_thread.cc: Same.
3616
3617 2005-01-17  Paolo Carlini  <pcarlini@suse.de>
3618
3619         PR libstdc++/19433
3620         * include/bits/stl_tree.h (_Rb_tree<>::insert_unique(iterator,
3621         const _Val&), _Rb_tree<>::insert_equal(iterator, const _Val&)):
3622         Obtain amortized constant complexity if t is inserted right after
3623         p - not before p - as per Table 69.
3624         * testsuite/performance/23_containers/set_insert_from_sorted.cc: New.
3625
3626         * testsuite/23_containers/multiset/insert/2.cc: New.
3627         * testsuite/23_containers/set/insert/1.cc: Likewise.
3628
3629         * testsuite/performance/23_containers/set_create_from_sorted.cc:
3630         Simplify.
3631
3632         * include/bits/stl_tree.h: Add a few missing std:: qualifications.
3633
3634 2005-01-16  Jonathan Wakely  <redi@gcc.gnu.org>
3635
3636         * include/ext/rope: Qualify calls to std::copy() by sequence_buffer.
3637         * testsuite/ext/rope/4.cc: Add.
3638
3639 2005-01-16  Lorenz Minder  <lminder@gmx.net>
3640             Paolo Carlini  <pcarlini@suse.de>
3641
3642         PR libstdc++/19322
3643         * include/c_std/std_cmath.h: Define the C99 classification facilities
3644         directly inside namespace std:.
3645         * testsuite/26_numerics/cmath/19322.cc: New.
3646
3647 2005-01-15  David Edelsohn  <edelsohn@gnu.org>
3648
3649         * config/os/aix/os_defines.h (_G_USING_THUNKS): Delete.
3650
3651 2005-01-14  Paolo Carlini  <pcarlini@suse.de>
3652
3653         PR libstdc++/19422
3654         * include/bits/stl_tree.h (_Rb_tree<>::insert_equal(_II, _II),
3655         _Rb_tree<>::insert_unique(_II, _II)): Use insert_equal (insert_unique,
3656         respectively) with hint (end()).
3657         * testsuite/performance/23_containers/set_create_from_sorted.cc: New.
3658
3659 2005-01-13  Geoffrey Keating  <geoffk@apple.com>
3660
3661         * configure.host (darwin): On darwin8 or later, no need to build
3662         libstdc++ with -flat_namespace.
3663
3664 2005-01-13  Jonathan Wakely  <redi@gcc.gnu.org>
3665
3666         * docs/doxygen/user.cfg.in: Set HAVE_DOT back to YES.
3667
3668 2005-01-13  Paolo Carlini  <pcarlini@suse.de>
3669
3670         * testsuite/26_numerics/cmath/c99_classification_macros_c++.cc:
3671         Re-enable commented-out test for double type.
3672
3673 2005-01-11  Paolo Carlini  <pcarlini@suse.de>
3674             Benjamin Kosnik  <bkoz@redhat.com>
3675
3676         * src/istream.cc (basic_istream<char>::ignore(streamsize),
3677         basic_istream<char>::ignore(streamsize, int_type),
3678         basic_istream<wchar_t>::ignore(streamsize),
3679         basic_istream<wchar_t>::ignore(streamsize, int_type)): In case
3680         more than numeric_limits<streamsize>::max() chars are skipped,
3681         set _M_gcount = max().
3682         * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3683         int_type)): Likewise; keep simple, don't forward.
3684
3685 2005-01-11  Paolo Carlini  <pcarlini@suse.de>
3686
3687         * src/istream.cc (basic_istream<char>::ignore(streamsize),
3688         basic_istream<char>::ignore(streamsize, int_type),
3689         basic_istream<wchar_t>::ignore(streamsize),
3690         basic_istream<wchar_t>::ignore(streamsize, int_type)): Revert
3691         2005-01-05 change: actually, the previous behavior is conforming
3692         and consistent with that of get(char_type*, streamsize, char_type),
3693         albeit slightly different from that of 3.3/3.4 in a corner case
3694         due to the use of snextc.
3695         * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3696         int_type)): Likewise.
3697         * testsuite/27_io/basic_istream/ignore/char/4.cc: Remove.
3698         * testsuite/27_io/basic_istream/ignore/wchar_t/4.cc: Likewise.
3699
3700 2005-01-11  Paolo Carlini  <pcarlini@suse.de>
3701
3702         * include/tr1/type_traits: Implement alignment_of and aligned_storage.
3703         * testsuite/tr1/4_metaprogramming/other_transformations/
3704         aligned_storage/aligned_storage.cc: New.
3705         * testsuite/tr1/4_metaprogramming/other_transformations/
3706         aligned_storage/typedefs.cc: Likewise.
3707         * testsuite/tr1/4_metaprogramming/type_properties/
3708         alignment_of/alignment_of.cc: Likewise.
3709         * testsuite/tr1/4_metaprogramming/type_properties/
3710         alignment_of/typedefs.cc: Likewise.
3711
3712 2005-01-10  Paolo Carlini  <pcarlini@suse.de>
3713
3714         * Makefile.in: Regenerate.
3715         * libmath/Makefile.in: Likewise.
3716         * libsupc++/Makefile.in: Likewise.
3717         * po/Makefile.in: Likewise.
3718         * src/Makefile.in: Likewise.
3719         * testsuite/Makefile.in: Likewise.
3720
3721 2005-01-10  Paolo Carlini  <pcarlini@suse.de>
3722
3723         * include/bits/stl_algobase.h (lexicographical_compare):
3724         Fix concept check.
3725
3726 2005-01-07  Benjamin Kosnik  <bkoz@redhat.com>
3727
3728         * acinclude.m4: Remove CCODECVT_H.
3729         * configure: Regenerate.
3730         * include/Makefile.am (host_headers_extra): Move to...
3731         (ext_headers): ...here.
3732         * include/Makefile.in: Regenerate.
3733         * include/ext/enc_filebuf: Remove enc_filebuf, consolidate
3734         enc_traits to...
3735         * config/locale/ieee_1003.1-2001/codecvt_specializations.h: Move...
3736         * include/ext/codecvt_specializations.h: ...here. Remove
3737         _GLIBCXX_USE___ENC_TRAITS.
3738         (__enc_traits): To __encoding_state, put in __gnu_cxx namespace.
3739         (enc_char_traits): To __encoding_char_traits, put in __gnu_cxx
3740         namespace.
3741         * config/locale/generic/codecvt_specializations.h: Remove.
3742         * include/bits/codecvt.h: Remove codecvt_specializations.h include.
3743         * src/codecvt.cc: Remove __enc_traits::_S_max_size.
3744
3745 2005-01-06  Benjamin Kosnik  <bkoz@redhat.com>
3746
3747         * include/bits/fstream.tcc: Remove unnecessary qualifications for
3748         uglified data members of basic_filebuf, including _M_buf,
3749         _M_buf_size, _M_mode, _M_pback_init.
3750         * include/std/std_fstream.h: Same.
3751
3752 2005-01-05  Benjamin Kosnik  <bkoz@redhat.com>
3753
3754         * testsuite/testsuite_hooks.h:
3755         (copy_constructor::mark_call):  Use __throw_runtime_error.
3756         (assignment_operator::mark_call): Same.
3757         * testsuite/testsuite_hooks.cc (verify_demangle): Same.
3758         (locale_data): Remove, just use runtime_error directly.
3759         (environment_variable): Same.
3760         (not_found): Same.
3761         (run_tests_wrapped_locale): Use __throw_runtime_error.
3762         (run_tests_wrapped_env): Same.
3763         (semaphore::semaphore): Same.
3764         (semaphore::signal): Same.
3765         (semaphore::wait): Same.
3766         * testsuite/testsuite_abi.h (symbol_error): Remove, use logic_error.
3767         * testsuite/testsuite_abi.cc (get_symbol): Use __throw_logic_error.
3768         (create_symbols): Use __throw_runtime_error.
3769         * src/bitmap_allocator.cc: Use __throw_bad_alloc.
3770
3771 2005-01-05  Mark Mitchell  <mark@codesourcery.com>
3772
3773         * testsuite/27_io/basic_filebuf/open/char/9507.cc: Remove child
3774         process.
3775
3776 2005-01-05  Paolo Carlini  <pcarlini@suse.de>
3777
3778         * src/istream.cc (basic_istream<char>::ignore(streamsize),
3779         basic_istream<char>::ignore(streamsize, int_type),
3780         basic_istream<wchar_t>::ignore(streamsize),
3781         basic_istream<wchar_t>::ignore(streamsize, int_type)): At the end,
3782         first check _M_gcount vs __n.
3783         * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3784         int_type)): Likewise.
3785         * testsuite/27_io/basic_istream/ignore/char/4.cc: New.
3786         * testsuite/27_io/basic_istream/ignore/wchar_t/4.cc: Likewise.
3787
3788 2005-01-03  Mark Mitchell  <mark@codesourcery.com>
3789
3790         * testsuite/testsuite_hooks.cc: Use __throw_exception_again
3791         instead of just throw.
3792
3793         * testsuite/testsuite_hooks.cc: Update coypright and follow style
3794         guidelines.
3795         * testsuite/testsuite_hooks.h: Likewise.
3796         * testsuite/27_io/basic_filebuf/close/char/4879.cc: Use
3797         semaphores, not sleep.
3798         * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise.
3799         * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
3800         * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise.
3801         * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc:
3802         Likewise.
3803         * testsuite/27_io/basic_filebuf/open/char/9507.cc: Likewise.
3804         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise.
3805         * testsuite/27_io/objects/char/7.cc: Likewise.
3806         * testsuite/27_io/objects/char/9661-1.cc: Likewise.
3807         * testsuite/27_io/objects/wchar_t/7.cc: Likewise.
3808         * testsuite/27_io/objects/wchar_t/9661-1.cc: Likewise.
3809
3810         * configure.ac: Check for sys/ipc.h and sys/sem.h.
3811         * config.h.in: Regenerated.
3812         * configure: Likewise.
3813         * testsuite/testsuite_hooks.cc (_GLIBCXX_SYSV_SEM): Conditionally
3814         define.
3815         (sys/types.h): Include.
3816         (sys/ipc.h): Likewise.
3817         (sys/sem.h): Likewise.
3818         (__gnu_test::semun): New type.
3819         (__gnu_test::semaphore::sempaphore): New function.
3820         (__gnu_test::semaphore::~semaphore): Likewise.
3821         (__gnu_test::semaphore::wait): Likewise.
3822         (__gnu_test::semaphore::signal): Likewise.
3823         * testsuite/testsuite_hooks.h (__gnu_test::semaphore): New class.
3824         * testsuite/27_io/basic_filebuf/close/char/4879.cc: Use
3825         semaphores, not sleep.
3826         * testsuite/27_io/basic_filebuf/close/char/9964.cc: Likewise.
3827         * testsuite/27_io/basic_filebuf/imbue/char/13171-2.cc: Likewise.
3828         * testsuite/27_io/basic_filebuf/imbue/char/13582-2.cc: Likewise.
3829         * testsuite/27_io/basic_filebuf/imbue/wchar_t/14975-2.cc:
3830         Likewise.
3831         * testsuite/27_io/basic_filebuf/open/char/9507.cc: Likewise.
3832         * testsuite/27_io/basic_filebuf/underflow/char/10097.cc: Likewise.
3833         * testsuite/27_io/objects/char/7.cc: Likewise.
3834         * testsuite/27_io/objects/char/9661-1.cc: Likewise.
3835         * testsuite/27_io/objects/wchar_t/7.cc: Likewise.
3836         * testsuite/27_io/objects/wchar_t/9661-1.cc: Likewise.
3837
3838 2005-01-03  Paolo Carlini  <pcarlini@suse.de>
3839
3840         * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3841         int_type)): Reset _M_gcount to numeric_limits<streamsize>::min().
3842         * src/istream.cc (basic_istream<char>::ignore(streamsize, int_type),
3843         basic_istream<wchar_t>::ignore(streamsize, int_type)): Likewise.
3844         * src/istream.cc (basic_istream<char>::ignore(streamsize),
3845         basic_istream<wchar_t>::ignore(streamsize)): Likewise; fix a typo.
3846
3847 2005-01-02  Paolo Carlini  <pcarlini@suse.de>
3848
3849         * src/istream.cc (basic_istream<char>::ignore(streamsize),
3850         basic_istream<char>::ignore(streamsize, int_type),
3851         basic_istream<wchar_t>::ignore(streamsize),
3852         basic_istream<wchar_t>::ignore(streamsize, int_type)): Avoid
3853         _M_gcount overflows.
3854         * include/bits/istream.tcc (ignore(streamsize), ignore(streamsize,
3855         int_type)): Likewise; use snextc in the main loop, consistently
3856         with the specializations above.
3857
3858 2005-01-02  Chris Jefferson  <chris@bubblescope.net>
3859
3860         * include/bits/stl_algobase.h (mismatch): Correct concept check.
3861
3862 2005-01-01  Paolo Carlini  <pcarlini@suse.de>
3863
3864         * testsuite/ext/enc_filebuf/char/13189.cc: Fix, first include
3865         testsuite_hooks.h, to know whether including ext/enc_filebuf.h.
3866         * testsuite/ext/enc_filebuf/wchar_t/13189.cc: Likewise.
3867
3868 2005-01-01  Paolo Carlini  <pcarlini@suse.de>
3869
3870         * testsuite/27_io/basic_istream/extractors_character/char/1.cc: Fix,
3871         null-terminate array1 at the outset.
3872         * testsuite/27_io/basic_istream/extractors_character/wchar_t/1.cc:
3873         Likewise.