From: Paolo Carlini Date: Mon, 4 Jan 2010 01:58:21 +0000 (+0000) Subject: list: Implement DR 1133 here too. X-Git-Tag: releases/gcc-4.5.0~1419 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab1c1187c394dda9e345124da82320bb0766e7d0;p=thirdparty%2Fgcc.git list: Implement DR 1133 here too. 2010-01-03 Paolo Carlini * include/profile/list: Implement DR 1133 here too. * testsuite/25_algorithms/set_intersection/34730.cc: Do not force debug-mode, leads to spurious failures in profile-mode. * testsuite/25_algorithms/upper_bound/33613.cc: Likewise. * testsuite/25_algorithms/lower_bound/33613.cc: Likewise. * testsuite/25_algorithms/set_difference/35541.cc: Likewise. * testsuite/21_strings/basic_string/40160.cc: Likewise. * testsuite/23_containers/unordered_map/requirements/debug_mode.cc: Likewise. * testsuite/23_containers/multimap/14340.cc: Likewise. * testsuite/23_containers/bitset/18604.cc: Likewise. * testsuite/23_containers/set/14340.cc: Likewise. * testsuite/23_containers/set/18604.cc: Likewise. * testsuite/23_containers/unordered_set/requirements/ debug_mode.cc: Likewise. * testsuite/23_containers/vector/ debug_mode_requires_reallocation-1.cc: Likewise. * testsuite/23_containers/vector/ debug_mode_requires_reallocation-2.cc: Likewise. * testsuite/23_containers/vector/14340.cc: Likewise. * testsuite/23_containers/vector/15523.cc: Likewise. * testsuite/23_containers/vector/18604.cc: Likewise. * testsuite/23_containers/deque/14340.cc: Likewise. * testsuite/23_containers/deque/18604.cc: Likewise. * testsuite/23_containers/multiset/14340.cc: Likewise. * testsuite/23_containers/list/operations/35969.cc: Likewise. * testsuite/23_containers/list/14340.cc: Likewise. * testsuite/23_containers/list/18604.cc: Likewise. * testsuite/23_containers/map/14340.cc: Likewise. * testsuite/23_containers/map/18604.cc: Likewise. * testsuite/26_numerics/random/uniform_real_distribution/ cons/parms_neg.cc: Remove, isn't testing anything. * testsuite/26_numerics/random/uniform_int_distribution/ cons/parms_neg.cc: Likewise. * testsuite/tr1/5_numerical_facilities/random/uniform_int/ cons/range_neg.cc: Likewise. * testsuite/23_containers/unordered_map/requirements/ explicit_instantiation/2.cc: Do not instantiate for non-defaultconstructible mapped_type. From-SVN: r155603 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 91865590a4c8..62afabb389c4 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,47 @@ +2010-01-03 Paolo Carlini + + * include/profile/list: Implement DR 1133 here too. + + * testsuite/25_algorithms/set_intersection/34730.cc: Do not force + debug-mode, leads to spurious failures in profile-mode. + * testsuite/25_algorithms/upper_bound/33613.cc: Likewise. + * testsuite/25_algorithms/lower_bound/33613.cc: Likewise. + * testsuite/25_algorithms/set_difference/35541.cc: Likewise. + * testsuite/21_strings/basic_string/40160.cc: Likewise. + * testsuite/26_numerics/random/uniform_real_distribution/ + cons/parms_neg.cc: Likewise. + * testsuite/26_numerics/random/uniform_int_distribution/ + cons/parms_neg.cc: Likewise. + * testsuite/23_containers/unordered_map/requirements/debug_mode.cc: + Likewise. + * testsuite/23_containers/multimap/14340.cc: Likewise. + * testsuite/23_containers/bitset/18604.cc: Likewise. + * testsuite/23_containers/set/14340.cc: Likewise. + * testsuite/23_containers/set/18604.cc: Likewise. + * testsuite/23_containers/unordered_set/requirements/ + debug_mode.cc: Likewise. + * testsuite/23_containers/vector/ + debug_mode_requires_reallocation-1.cc: Likewise. + * testsuite/23_containers/vector/ + debug_mode_requires_reallocation-2.cc: Likewise. + * testsuite/23_containers/vector/14340.cc: Likewise. + * testsuite/23_containers/vector/15523.cc: Likewise. + * testsuite/23_containers/vector/18604.cc: Likewise. + * testsuite/23_containers/deque/14340.cc: Likewise. + * testsuite/23_containers/deque/18604.cc: Likewise. + * testsuite/23_containers/multiset/14340.cc: Likewise. + * testsuite/23_containers/list/operations/35969.cc: Likewise. + * testsuite/23_containers/list/14340.cc: Likewise. + * testsuite/23_containers/list/18604.cc: Likewise. + * testsuite/23_containers/map/14340.cc: Likewise. + * testsuite/23_containers/map/18604.cc: Likewise. + * testsuite/tr1/5_numerical_facilities/random/uniform_int/ + cons/range_neg.cc: Likewise. + + * testsuite/23_containers/unordered_map/requirements/ + explicit_instantiation/2.cc: Do not instantiate for + non-defaultconstructible mapped_type. + 2010-01-03 Paolo Carlini * include/debug/set.h: Implement DR 130 here too. diff --git a/libstdc++-v3/include/profile/list b/libstdc++-v3/include/profile/list index 5060293ab1c5..59a468b6dc87 100644 --- a/libstdc++-v3/include/profile/list +++ b/libstdc++-v3/include/profile/list @@ -1,6 +1,6 @@ // Profiling list implementation -*- C++ -*- -// Copyright (C) 2009 Free Software Foundation, Inc. +// Copyright (C) 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -73,7 +73,6 @@ namespace __profile : _Base(__first, __last, __a) { } - list(const list& __x) : _Base(__x) { } @@ -118,23 +117,17 @@ namespace __profile void assign(initializer_list __l) - { - _Base::assign(__l); - } + { _Base::assign(__l); } #endif template void assign(_InputIterator __first, _InputIterator __last) - { - _Base::assign(__first, __last); - } + { _Base::assign(__first, __last); } void assign(size_type __n, const _Tp& __t) - { - _Base::assign(__n, __t); - } + { _Base::assign(__n, __t); } using _Base::get_allocator; @@ -196,34 +189,24 @@ namespace __profile void resize(size_type __sz, _Tp __c = _Tp()) - { - _Base::resize(__sz, __c); - } + { _Base::resize(__sz, __c); } // element access: reference front() - { - return _Base::front(); - } + { return _Base::front(); } const_reference front() const - { - return _Base::front(); - } + { return _Base::front(); } reference back() - { - return _Base::back(); - } + { return _Base::back(); } const_reference back() const - { - return _Base::back(); - } + { return _Base::back(); } // 23.2.2.3 modifiers: using _Base::push_front; @@ -265,9 +248,7 @@ namespace __profile iterator insert(iterator __position, const _Tp& __x) - { - return iterator(_Base::insert(__position, __x)); - } + { return iterator(_Base::insert(__position, __x)); } #ifdef __GXX_EXPERIMENTAL_CXX0X__ iterator @@ -276,30 +257,22 @@ namespace __profile void insert(iterator __p, initializer_list __l) - { - _Base::insert(__p, __l); - } + { _Base::insert(__p, __l); } #endif void insert(iterator __position, size_type __n, const _Tp& __x) - { - _Base::insert(__position, __n, __x); - } + { _Base::insert(__position, __n, __x); } template void insert(iterator __position, _InputIterator __first, _InputIterator __last) - { - _Base::insert(__position, __first, __last); - } + { _Base::insert(__position, __first, __last); } iterator erase(iterator __position) - { - return iterator(_Base::erase(__position)); - } + { return iterator(_Base::erase(__position)); } iterator erase(iterator __position, iterator __last) @@ -311,15 +284,11 @@ namespace __profile void swap(list& __x) - { - _Base::swap(__x); - } + { _Base::swap(__x); } void clear() - { - _Base::clear(); - } + { _Base::clear(); } // 23.2.2.4 list operations: void @@ -328,9 +297,13 @@ namespace __profile #else splice(iterator __position, list& __x) #endif - { - this->splice(__position, _GLIBCXX_MOVE(__x), __x.begin(), __x.end()); - } + { this->splice(__position, _GLIBCXX_MOVE(__x), __x.begin(), __x.end()); } + +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + void + splice(iterator __position, list& __x) + { this->splice(__position, std::move(__x)); } +#endif void #ifdef __GXX_EXPERIMENTAL_CXX0X__ @@ -347,6 +320,12 @@ namespace __profile __i); } +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + void + splice(iterator __position, list& __x, iterator __i) + { this->splice(__position, std::move(__x), __i); } +#endif + void #ifdef __GXX_EXPERIMENTAL_CXX0X__ splice(iterator __position, list&& __x, iterator __first, @@ -363,6 +342,12 @@ namespace __profile __first, __last); } +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + void + splice(iterator __position, list& __x, iterator __first, iterator __last) + { this->splice(__position, std::move(__x), __first, __last); } +#endif + void remove(const _Tp& __value) { @@ -435,11 +420,15 @@ namespace __profile // _GLIBCXX_RESOLVE_LIB_DEFECTS // 300. list::merge() specification incomplete if (this != &__x) - { - _Base::merge(_GLIBCXX_MOVE(__x._M_base())); - } + _Base::merge(_GLIBCXX_MOVE(__x._M_base())); } +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + void + merge(list& __x) + { this->merge(std::move(__x)); } +#endif + template void #ifdef __GXX_EXPERIMENTAL_CXX0X__ @@ -451,11 +440,16 @@ namespace __profile // _GLIBCXX_RESOLVE_LIB_DEFECTS // 300. list::merge() specification incomplete if (this != &__x) - { - _Base::merge(_GLIBCXX_MOVE(__x._M_base()), __comp); - } + _Base::merge(_GLIBCXX_MOVE(__x._M_base()), __comp); } +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + template + void + merge(list& __x, _Compare __comp) + { this->merge(std::move(__x), __comp); } +#endif + void sort() { _Base::sort(); } diff --git a/libstdc++-v3/testsuite/21_strings/basic_string/40160.cc b/libstdc++-v3/testsuite/21_strings/basic_string/40160.cc index 5a746f13dbc8..ec82d474c360 100644 --- a/libstdc++-v3/testsuite/21_strings/basic_string/40160.cc +++ b/libstdc++-v3/testsuite/21_strings/basic_string/40160.cc @@ -17,6 +17,8 @@ // with this library; see the file COPYING3. If not see // . +// NB: This issue affected only debug-mode. + // { dg-options "-fno-rtti" } // { dg-do compile } diff --git a/libstdc++-v3/testsuite/23_containers/bitset/18604.cc b/libstdc++-v3/testsuite/23_containers/bitset/18604.cc index 5998751c5549..f0c06aa623b0 100644 --- a/libstdc++-v3/testsuite/23_containers/bitset/18604.cc +++ b/libstdc++-v3/testsuite/23_containers/bitset/18604.cc @@ -1,6 +1,7 @@ // 2005-05-09 Paolo Carlini -// Copyright (C) 2005, 2009 Free Software Foundation, Inc. +// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +18,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/18604 diff --git a/libstdc++-v3/testsuite/23_containers/deque/14340.cc b/libstdc++-v3/testsuite/23_containers/deque/14340.cc index f35596ef61d3..b3f7ca5dce5b 100644 --- a/libstdc++-v3/testsuite/23_containers/deque/14340.cc +++ b/libstdc++-v3/testsuite/23_containers/deque/14340.cc @@ -1,6 +1,7 @@ // -*- C++ -*- -// Copyright (C) 2004, 2009 Free Software Foundation, Inc. +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -21,7 +22,8 @@ #include #include -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/14340 diff --git a/libstdc++-v3/testsuite/23_containers/deque/18604.cc b/libstdc++-v3/testsuite/23_containers/deque/18604.cc index 4bc60d1b708a..69e49e0855f7 100644 --- a/libstdc++-v3/testsuite/23_containers/deque/18604.cc +++ b/libstdc++-v3/testsuite/23_containers/deque/18604.cc @@ -1,6 +1,7 @@ // 2005-05-09 Paolo Carlini -// Copyright (C) 2005, 2009 Free Software Foundation, Inc. +// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +18,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/18604 diff --git a/libstdc++-v3/testsuite/23_containers/list/14340.cc b/libstdc++-v3/testsuite/23_containers/list/14340.cc index 26b5df6d0591..5606ff04221a 100644 --- a/libstdc++-v3/testsuite/23_containers/list/14340.cc +++ b/libstdc++-v3/testsuite/23_containers/list/14340.cc @@ -1,6 +1,7 @@ // -*- C++ -*- -// Copyright (C) 2004, 2009 Free Software Foundation, Inc. +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,11 +18,11 @@ // with this library; see the file COPYING3. If not see // . - #include #include -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/14340 diff --git a/libstdc++-v3/testsuite/23_containers/list/18604.cc b/libstdc++-v3/testsuite/23_containers/list/18604.cc index 231732da0da0..398d0f6cd680 100644 --- a/libstdc++-v3/testsuite/23_containers/list/18604.cc +++ b/libstdc++-v3/testsuite/23_containers/list/18604.cc @@ -1,6 +1,7 @@ // 2005-05-09 Paolo Carlini -// Copyright (C) 2005, 2009 Free Software Foundation, Inc. +// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +18,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/18604 diff --git a/libstdc++-v3/testsuite/23_containers/list/operations/35969.cc b/libstdc++-v3/testsuite/23_containers/list/operations/35969.cc index 5a47eca3bb17..2442f96015f4 100644 --- a/libstdc++-v3/testsuite/23_containers/list/operations/35969.cc +++ b/libstdc++-v3/testsuite/23_containers/list/operations/35969.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +17,7 @@ // 23.2.2.4 list operations [lib.list.ops] -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. #include #include diff --git a/libstdc++-v3/testsuite/23_containers/map/14340.cc b/libstdc++-v3/testsuite/23_containers/map/14340.cc index 8ffb60a0f985..1ee9fc1c92b4 100644 --- a/libstdc++-v3/testsuite/23_containers/map/14340.cc +++ b/libstdc++-v3/testsuite/23_containers/map/14340.cc @@ -1,6 +1,7 @@ // -*- C++ -*- -// Copyright (C) 2004, 2009 Free Software Foundation, Inc. +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,11 +18,11 @@ // with this library; see the file COPYING3. If not see // . - #include #include -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/14340 diff --git a/libstdc++-v3/testsuite/23_containers/map/18604.cc b/libstdc++-v3/testsuite/23_containers/map/18604.cc index 01651d037901..ba1b06485a75 100644 --- a/libstdc++-v3/testsuite/23_containers/map/18604.cc +++ b/libstdc++-v3/testsuite/23_containers/map/18604.cc @@ -1,6 +1,7 @@ // 2005-05-09 Paolo Carlini -// Copyright (C) 2005, 2009 Free Software Foundation, Inc. +// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +18,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/18604 diff --git a/libstdc++-v3/testsuite/23_containers/multimap/14340.cc b/libstdc++-v3/testsuite/23_containers/multimap/14340.cc index 4c30ea6bb5bb..431a47314561 100644 --- a/libstdc++-v3/testsuite/23_containers/multimap/14340.cc +++ b/libstdc++-v3/testsuite/23_containers/multimap/14340.cc @@ -1,6 +1,7 @@ // -*- C++ -*- -// Copyright (C) 2004, 2009 Free Software Foundation, Inc. +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,11 +18,11 @@ // with this library; see the file COPYING3. If not see // . - #include #include -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/14340 diff --git a/libstdc++-v3/testsuite/23_containers/multiset/14340.cc b/libstdc++-v3/testsuite/23_containers/multiset/14340.cc index fb7f9e506223..cbc29e914530 100644 --- a/libstdc++-v3/testsuite/23_containers/multiset/14340.cc +++ b/libstdc++-v3/testsuite/23_containers/multiset/14340.cc @@ -1,6 +1,7 @@ // -*- C++ -*- -// Copyright (C) 2004, 2009 Free Software Foundation, Inc. +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,11 +18,11 @@ // with this library; see the file COPYING3. If not see // . - #include #include -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/14340 diff --git a/libstdc++-v3/testsuite/23_containers/set/14340.cc b/libstdc++-v3/testsuite/23_containers/set/14340.cc index f035c6bed8d9..8539544e6348 100644 --- a/libstdc++-v3/testsuite/23_containers/set/14340.cc +++ b/libstdc++-v3/testsuite/23_containers/set/14340.cc @@ -1,6 +1,7 @@ // -*- C++ -*- -// Copyright (C) 2004, 2009 Free Software Foundation, Inc. +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,11 +18,11 @@ // with this library; see the file COPYING3. If not see // . - #include #include -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/14340 diff --git a/libstdc++-v3/testsuite/23_containers/set/18604.cc b/libstdc++-v3/testsuite/23_containers/set/18604.cc index 9ae550ebb9fb..a57f95f4bdfd 100644 --- a/libstdc++-v3/testsuite/23_containers/set/18604.cc +++ b/libstdc++-v3/testsuite/23_containers/set/18604.cc @@ -1,6 +1,7 @@ // 2005-05-09 Paolo Carlini -// Copyright (C) 2005, 2009 Free Software Foundation, Inc. +// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +18,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/18604 diff --git a/libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_mode.cc b/libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_mode.cc index b12f14fd6bdc..8b2fe14caa8a 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_mode.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_mode.cc @@ -1,7 +1,9 @@ -// { dg-options "-std=gnu++0x -D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + +// { dg-options "-std=gnu++0x" } // { dg-do compile } -// Copyright (C) 2007, 2009 Free Software Foundation, Inc. +// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -18,7 +20,6 @@ // with this library; see the file COPYING3. If not see // . - #include //PR libstdc++/35922 diff --git a/libstdc++-v3/testsuite/23_containers/unordered_map/requirements/explicit_instantiation/2.cc b/libstdc++-v3/testsuite/23_containers/unordered_map/requirements/explicit_instantiation/2.cc index 851790824e82..7f4e0513830c 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_map/requirements/explicit_instantiation/2.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_map/requirements/explicit_instantiation/2.cc @@ -1,7 +1,7 @@ // { dg-options "-std=gnu++0x" } // { dg-do compile } -// Copyright (C) 2009 Free Software Foundation, Inc. +// Copyright (C) 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -26,4 +26,7 @@ typedef __gnu_test::NonDefaultConstructible inst_type; typedef __gnu_test::NonDefaultConstructible_hash hash_type; -template class std::unordered_map; + +// N.B. We cannot instantiate with mapped_type == NonDefaultConstructible +// because of 23.5.1.2. +template class std::unordered_map; diff --git a/libstdc++-v3/testsuite/23_containers/unordered_set/requirements/debug_mode.cc b/libstdc++-v3/testsuite/23_containers/unordered_set/requirements/debug_mode.cc index f0085fe6c261..206b70437164 100644 --- a/libstdc++-v3/testsuite/23_containers/unordered_set/requirements/debug_mode.cc +++ b/libstdc++-v3/testsuite/23_containers/unordered_set/requirements/debug_mode.cc @@ -1,7 +1,9 @@ -// { dg-options "-std=gnu++0x -D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + +// { dg-options "-std=gnu++0x" } // { dg-do compile } -// Copyright (C) 2007, 2009 Free Software Foundation, Inc. +// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -18,7 +20,6 @@ // with this library; see the file COPYING3. If not see // . - #include //PR libstdc++/35922 diff --git a/libstdc++-v3/testsuite/23_containers/vector/14340.cc b/libstdc++-v3/testsuite/23_containers/vector/14340.cc index 6250dd8f35e2..0d4e45df9a91 100644 --- a/libstdc++-v3/testsuite/23_containers/vector/14340.cc +++ b/libstdc++-v3/testsuite/23_containers/vector/14340.cc @@ -1,6 +1,7 @@ // -*- C++ -*- -// Copyright (C) 2004, 2009 Free Software Foundation, Inc. +// Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,11 +18,11 @@ // with this library; see the file COPYING3. If not see // . - #include #include -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/14340 diff --git a/libstdc++-v3/testsuite/23_containers/vector/15523.cc b/libstdc++-v3/testsuite/23_containers/vector/15523.cc index 3b8230cd5607..c5f48948378b 100644 --- a/libstdc++-v3/testsuite/23_containers/vector/15523.cc +++ b/libstdc++-v3/testsuite/23_containers/vector/15523.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2009 Free Software Foundation, Inc. +// Copyright (C) 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. #include diff --git a/libstdc++-v3/testsuite/23_containers/vector/18604.cc b/libstdc++-v3/testsuite/23_containers/vector/18604.cc index 279d9e3587c5..6ebd30833c5c 100644 --- a/libstdc++-v3/testsuite/23_containers/vector/18604.cc +++ b/libstdc++-v3/testsuite/23_containers/vector/18604.cc @@ -1,6 +1,7 @@ // 2005-05-09 Paolo Carlini -// Copyright (C) 2005, 2009 Free Software Foundation, Inc. +// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 +// Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +18,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/18604 diff --git a/libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-1.cc b/libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-1.cc index 6bf33184ac1c..3f65119a7a95 100644 --- a/libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-1.cc +++ b/libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-1.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -15,7 +15,7 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. #include #include diff --git a/libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-2.cc b/libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-2.cc index 605dc05c8318..56bc10909363 100644 --- a/libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-2.cc +++ b/libstdc++-v3/testsuite/23_containers/vector/debug_mode_requires_reallocation-2.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -15,7 +15,9 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG -D_GLIBCXX_DEBUG_PEDANTIC" } +// NB: This issue affected only debug-mode, in pedantic mode. + +// { dg-options "-D_GLIBCXX_DEBUG_PEDANTIC" } #include #include diff --git a/libstdc++-v3/testsuite/25_algorithms/lower_bound/33613.cc b/libstdc++-v3/testsuite/25_algorithms/lower_bound/33613.cc index 9e4c11600da0..1358b4d9f746 100644 --- a/libstdc++-v3/testsuite/25_algorithms/lower_bound/33613.cc +++ b/libstdc++-v3/testsuite/25_algorithms/lower_bound/33613.cc @@ -1,6 +1,6 @@ // 2007-10-02 Paolo Carlini -// Copyright (C) 2007, 2009 Free Software Foundation, Inc. +// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +17,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/33613 diff --git a/libstdc++-v3/testsuite/25_algorithms/set_difference/35541.cc b/libstdc++-v3/testsuite/25_algorithms/set_difference/35541.cc index 8175d7f619ff..b78f3260d1ba 100644 --- a/libstdc++-v3/testsuite/25_algorithms/set_difference/35541.cc +++ b/libstdc++-v3/testsuite/25_algorithms/set_difference/35541.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -15,7 +15,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/35541 diff --git a/libstdc++-v3/testsuite/25_algorithms/set_intersection/34730.cc b/libstdc++-v3/testsuite/25_algorithms/set_intersection/34730.cc index 99828a847466..e9da465bc7f8 100644 --- a/libstdc++-v3/testsuite/25_algorithms/set_intersection/34730.cc +++ b/libstdc++-v3/testsuite/25_algorithms/set_intersection/34730.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. +// Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -15,7 +15,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/34730 diff --git a/libstdc++-v3/testsuite/25_algorithms/upper_bound/33613.cc b/libstdc++-v3/testsuite/25_algorithms/upper_bound/33613.cc index d733c3d25361..3a106938c908 100644 --- a/libstdc++-v3/testsuite/25_algorithms/upper_bound/33613.cc +++ b/libstdc++-v3/testsuite/25_algorithms/upper_bound/33613.cc @@ -1,6 +1,6 @@ // 2007-10-02 Paolo Carlini -// Copyright (C) 2007, 2009 Free Software Foundation, Inc. +// Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -17,7 +17,8 @@ // with this library; see the file COPYING3. If not see // . -// { dg-options "-D_GLIBCXX_DEBUG" } +// NB: This issue affected only debug-mode. + // { dg-do compile } // libstdc++/33613 diff --git a/libstdc++-v3/testsuite/26_numerics/random/uniform_int_distribution/cons/parms_neg.cc b/libstdc++-v3/testsuite/26_numerics/random/uniform_int_distribution/cons/parms_neg.cc deleted file mode 100644 index e462d6862987..000000000000 --- a/libstdc++-v3/testsuite/26_numerics/random/uniform_int_distribution/cons/parms_neg.cc +++ /dev/null @@ -1,41 +0,0 @@ -// -// 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> -// -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the -// terms of the GNU General Public License as published by the -// Free Software Foundation; either version 3, or (at your option) -// any later version. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License along -// with this library; see the file COPYING3. If not see -// . - -// { dg-do run { xfail *-*-* } } -// { dg-options "-std=c++0x -D_GLIBCXX_DEBUG" } -// { dg-require-cstdint "" } - -// 26.4.8.1.1 Class template uniform_int_distribution [rand.dist_uni] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] - -#include -#include - -void -test01() -{ - std::uniform_int_distribution u(20, 1); -} - -int main() -{ - test01(); - return 0; -} diff --git a/libstdc++-v3/testsuite/26_numerics/random/uniform_real_distribution/cons/parms_neg.cc b/libstdc++-v3/testsuite/26_numerics/random/uniform_real_distribution/cons/parms_neg.cc deleted file mode 100644 index a5c76d6ec7a2..000000000000 --- a/libstdc++-v3/testsuite/26_numerics/random/uniform_real_distribution/cons/parms_neg.cc +++ /dev/null @@ -1,41 +0,0 @@ -// -// 2008-11-24 Edward M. Smith-Rowland <3dw4rd@verizon.net> -// -// Copyright (C) 2008, 2009 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the -// terms of the GNU General Public License as published by the -// Free Software Foundation; either version 3, or (at your option) -// any later version. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License along -// with this library; see the file COPYING3. If not see -// . - -// { dg-do run { xfail *-*-* } } -// { dg-options "-std=c++0x -D_GLIBCXX_DEBUG" } -// { dg-require-cstdint "" } - -// 26.4.8.1.1 Class template uniform_real_distribution [rand.dist_uni] -// 26.4.2.4 Concept RandomNumberDistribution [rand.concept.dist] - -#include -#include - -void -test01() -{ - std::uniform_real_distribution u(5.0, 0.0); -} - -int main() -{ - test01(); - return 0; -} diff --git a/libstdc++-v3/testsuite/tr1/5_numerical_facilities/random/uniform_int/cons/range_neg.cc b/libstdc++-v3/testsuite/tr1/5_numerical_facilities/random/uniform_int/cons/range_neg.cc deleted file mode 100644 index 280544d599df..000000000000 --- a/libstdc++-v3/testsuite/tr1/5_numerical_facilities/random/uniform_int/cons/range_neg.cc +++ /dev/null @@ -1,41 +0,0 @@ -// 2006-06-04 Stephen M. Webb -// -// Copyright (C) 2006, 2009 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the -// terms of the GNU General Public License as published by the -// Free Software Foundation; either version 3, or (at your option) -// any later version. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License along -// with this library; see the file COPYING3. If not see -// . - -// { dg-do run { xfail *-*-* } } -// { dg-options "-D_GLIBCXX_DEBUG" } - -// 5.1.7.1 class template uniform_int -// 5.1.7.1 [2] constructors and member functions - -#include -#include - -void -test01() -{ - using namespace std::tr1; - - uniform_int u(20, 1); -} - -int main() -{ - test01(); - return 0; -}