Commit ab1c1187 by Paolo Carlini Committed by Paolo Carlini

list: Implement DR 1133 here too.

2010-01-03  Paolo Carlini  <paolo.carlini@oracle.com>

	* 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
parent 55bcd32b
2010-01-03 Paolo Carlini <paolo.carlini@oracle.com> 2010-01-03 Paolo Carlini <paolo.carlini@oracle.com>
* 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 <paolo.carlini@oracle.com>
* include/debug/set.h: Implement DR 130 here too. * include/debug/set.h: Implement DR 130 here too.
* include/debug/multiset.h: Likewise. * include/debug/multiset.h: Likewise.
* include/debug/map.h: Likewise. * include/debug/map.h: Likewise.
......
// Profiling list implementation -*- C++ -*- // 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -73,7 +73,6 @@ namespace __profile ...@@ -73,7 +73,6 @@ namespace __profile
: _Base(__first, __last, __a) : _Base(__first, __last, __a)
{ } { }
list(const list& __x) list(const list& __x)
: _Base(__x) { } : _Base(__x) { }
...@@ -118,23 +117,17 @@ namespace __profile ...@@ -118,23 +117,17 @@ namespace __profile
void void
assign(initializer_list<value_type> __l) assign(initializer_list<value_type> __l)
{ { _Base::assign(__l); }
_Base::assign(__l);
}
#endif #endif
template<class _InputIterator> template<class _InputIterator>
void void
assign(_InputIterator __first, _InputIterator __last) assign(_InputIterator __first, _InputIterator __last)
{ { _Base::assign(__first, __last); }
_Base::assign(__first, __last);
}
void void
assign(size_type __n, const _Tp& __t) assign(size_type __n, const _Tp& __t)
{ { _Base::assign(__n, __t); }
_Base::assign(__n, __t);
}
using _Base::get_allocator; using _Base::get_allocator;
...@@ -196,34 +189,24 @@ namespace __profile ...@@ -196,34 +189,24 @@ namespace __profile
void void
resize(size_type __sz, _Tp __c = _Tp()) resize(size_type __sz, _Tp __c = _Tp())
{ { _Base::resize(__sz, __c); }
_Base::resize(__sz, __c);
}
// element access: // element access:
reference reference
front() front()
{ { return _Base::front(); }
return _Base::front();
}
const_reference const_reference
front() const front() const
{ { return _Base::front(); }
return _Base::front();
}
reference reference
back() back()
{ { return _Base::back(); }
return _Base::back();
}
const_reference const_reference
back() const back() const
{ { return _Base::back(); }
return _Base::back();
}
// 23.2.2.3 modifiers: // 23.2.2.3 modifiers:
using _Base::push_front; using _Base::push_front;
...@@ -265,9 +248,7 @@ namespace __profile ...@@ -265,9 +248,7 @@ namespace __profile
iterator iterator
insert(iterator __position, const _Tp& __x) insert(iterator __position, const _Tp& __x)
{ { return iterator(_Base::insert(__position, __x)); }
return iterator(_Base::insert(__position, __x));
}
#ifdef __GXX_EXPERIMENTAL_CXX0X__ #ifdef __GXX_EXPERIMENTAL_CXX0X__
iterator iterator
...@@ -276,30 +257,22 @@ namespace __profile ...@@ -276,30 +257,22 @@ namespace __profile
void void
insert(iterator __p, initializer_list<value_type> __l) insert(iterator __p, initializer_list<value_type> __l)
{ { _Base::insert(__p, __l); }
_Base::insert(__p, __l);
}
#endif #endif
void void
insert(iterator __position, size_type __n, const _Tp& __x) insert(iterator __position, size_type __n, const _Tp& __x)
{ { _Base::insert(__position, __n, __x); }
_Base::insert(__position, __n, __x);
}
template<class _InputIterator> template<class _InputIterator>
void void
insert(iterator __position, _InputIterator __first, insert(iterator __position, _InputIterator __first,
_InputIterator __last) _InputIterator __last)
{ { _Base::insert(__position, __first, __last); }
_Base::insert(__position, __first, __last);
}
iterator iterator
erase(iterator __position) erase(iterator __position)
{ { return iterator(_Base::erase(__position)); }
return iterator(_Base::erase(__position));
}
iterator iterator
erase(iterator __position, iterator __last) erase(iterator __position, iterator __last)
...@@ -311,15 +284,11 @@ namespace __profile ...@@ -311,15 +284,11 @@ namespace __profile
void void
swap(list& __x) swap(list& __x)
{ { _Base::swap(__x); }
_Base::swap(__x);
}
void void
clear() clear()
{ { _Base::clear(); }
_Base::clear();
}
// 23.2.2.4 list operations: // 23.2.2.4 list operations:
void void
...@@ -328,9 +297,13 @@ namespace __profile ...@@ -328,9 +297,13 @@ namespace __profile
#else #else
splice(iterator __position, list& __x) splice(iterator __position, list& __x)
#endif #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 void
#ifdef __GXX_EXPERIMENTAL_CXX0X__ #ifdef __GXX_EXPERIMENTAL_CXX0X__
...@@ -347,6 +320,12 @@ namespace __profile ...@@ -347,6 +320,12 @@ namespace __profile
__i); __i);
} }
#ifdef __GXX_EXPERIMENTAL_CXX0X__
void
splice(iterator __position, list& __x, iterator __i)
{ this->splice(__position, std::move(__x), __i); }
#endif
void void
#ifdef __GXX_EXPERIMENTAL_CXX0X__ #ifdef __GXX_EXPERIMENTAL_CXX0X__
splice(iterator __position, list&& __x, iterator __first, splice(iterator __position, list&& __x, iterator __first,
...@@ -363,6 +342,12 @@ namespace __profile ...@@ -363,6 +342,12 @@ namespace __profile
__first, __last); __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 void
remove(const _Tp& __value) remove(const _Tp& __value)
{ {
...@@ -435,11 +420,15 @@ namespace __profile ...@@ -435,11 +420,15 @@ namespace __profile
// _GLIBCXX_RESOLVE_LIB_DEFECTS // _GLIBCXX_RESOLVE_LIB_DEFECTS
// 300. list::merge() specification incomplete // 300. list::merge() specification incomplete
if (this != &__x) 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<class _Compare> template<class _Compare>
void void
#ifdef __GXX_EXPERIMENTAL_CXX0X__ #ifdef __GXX_EXPERIMENTAL_CXX0X__
...@@ -451,11 +440,16 @@ namespace __profile ...@@ -451,11 +440,16 @@ namespace __profile
// _GLIBCXX_RESOLVE_LIB_DEFECTS // _GLIBCXX_RESOLVE_LIB_DEFECTS
// 300. list::merge() specification incomplete // 300. list::merge() specification incomplete
if (this != &__x) if (this != &__x)
{ _Base::merge(_GLIBCXX_MOVE(__x._M_base()), __comp);
_Base::merge(_GLIBCXX_MOVE(__x._M_base()), __comp);
}
} }
#ifdef __GXX_EXPERIMENTAL_CXX0X__
template<typename _Compare>
void
merge(list& __x, _Compare __comp)
{ this->merge(std::move(__x), __comp); }
#endif
void void
sort() { _Base::sort(); } sort() { _Base::sort(); }
......
...@@ -17,6 +17,8 @@ ...@@ -17,6 +17,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// NB: This issue affected only debug-mode.
// { dg-options "-fno-rtti" } // { dg-options "-fno-rtti" }
// { dg-do compile } // { dg-do compile }
......
// 2005-05-09 Paolo Carlini <pcarlini@suse.de> // 2005-05-09 Paolo Carlini <pcarlini@suse.de>
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +18,8 @@ ...@@ -17,7 +18,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/18604 // libstdc++/18604
......
// -*- C++ -*- // -*- 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -21,7 +22,8 @@ ...@@ -21,7 +22,8 @@
#include <testsuite_hooks.h> #include <testsuite_hooks.h>
#include <deque> #include <deque>
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/14340 // libstdc++/14340
......
// 2005-05-09 Paolo Carlini <pcarlini@suse.de> // 2005-05-09 Paolo Carlini <pcarlini@suse.de>
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +18,8 @@ ...@@ -17,7 +18,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/18604 // libstdc++/18604
......
// -*- C++ -*- // -*- 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,11 +18,11 @@ ...@@ -17,11 +18,11 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
#include <testsuite_hooks.h> #include <testsuite_hooks.h>
#include <list> #include <list>
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/14340 // libstdc++/14340
......
// 2005-05-09 Paolo Carlini <pcarlini@suse.de> // 2005-05-09 Paolo Carlini <pcarlini@suse.de>
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +18,8 @@ ...@@ -17,7 +18,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/18604 // libstdc++/18604
......
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
// 23.2.2.4 list operations [lib.list.ops] // 23.2.2.4 list operations [lib.list.ops]
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
#include <list> #include <list>
#include <functional> #include <functional>
......
// -*- C++ -*- // -*- 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,11 +18,11 @@ ...@@ -17,11 +18,11 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
#include <testsuite_hooks.h> #include <testsuite_hooks.h>
#include <map> #include <map>
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/14340 // libstdc++/14340
......
// 2005-05-09 Paolo Carlini <pcarlini@suse.de> // 2005-05-09 Paolo Carlini <pcarlini@suse.de>
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +18,8 @@ ...@@ -17,7 +18,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/18604 // libstdc++/18604
......
// -*- C++ -*- // -*- 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,11 +18,11 @@ ...@@ -17,11 +18,11 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
#include <testsuite_hooks.h> #include <testsuite_hooks.h>
#include <map> #include <map>
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/14340 // libstdc++/14340
......
// -*- C++ -*- // -*- 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,11 +18,11 @@ ...@@ -17,11 +18,11 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
#include <testsuite_hooks.h> #include <testsuite_hooks.h>
#include <set> #include <set>
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/14340 // libstdc++/14340
......
// -*- C++ -*- // -*- 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,11 +18,11 @@ ...@@ -17,11 +18,11 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
#include <testsuite_hooks.h> #include <testsuite_hooks.h>
#include <set> #include <set>
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/14340 // libstdc++/14340
......
// 2005-05-09 Paolo Carlini <pcarlini@suse.de> // 2005-05-09 Paolo Carlini <pcarlini@suse.de>
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +18,8 @@ ...@@ -17,7 +18,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/18604 // libstdc++/18604
......
// { dg-options "-std=gnu++0x -D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-options "-std=gnu++0x" }
// { dg-do compile } // { 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -18,7 +20,6 @@ ...@@ -18,7 +20,6 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
#include <unordered_map> #include <unordered_map>
//PR libstdc++/35922 //PR libstdc++/35922
......
// { dg-options "-std=gnu++0x" } // { dg-options "-std=gnu++0x" }
// { dg-do compile } // { 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -26,4 +26,7 @@ ...@@ -26,4 +26,7 @@
typedef __gnu_test::NonDefaultConstructible inst_type; typedef __gnu_test::NonDefaultConstructible inst_type;
typedef __gnu_test::NonDefaultConstructible_hash hash_type; typedef __gnu_test::NonDefaultConstructible_hash hash_type;
template class std::unordered_map<inst_type, inst_type, hash_type>;
// N.B. We cannot instantiate with mapped_type == NonDefaultConstructible
// because of 23.5.1.2.
template class std::unordered_map<inst_type, double, hash_type>;
// { dg-options "-std=gnu++0x -D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-options "-std=gnu++0x" }
// { dg-do compile } // { 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -18,7 +20,6 @@ ...@@ -18,7 +20,6 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
#include <unordered_set> #include <unordered_set>
//PR libstdc++/35922 //PR libstdc++/35922
......
// -*- C++ -*- // -*- 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,11 +18,11 @@ ...@@ -17,11 +18,11 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
#include <testsuite_hooks.h> #include <testsuite_hooks.h>
#include <vector> #include <vector>
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/14340 // libstdc++/14340
......
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
#include <vector> #include <vector>
......
// 2005-05-09 Paolo Carlini <pcarlini@suse.de> // 2005-05-09 Paolo Carlini <pcarlini@suse.de>
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +18,8 @@ ...@@ -17,7 +18,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/18604 // libstdc++/18604
......
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
#include <vector> #include <vector>
#include <algorithm> #include <algorithm>
......
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -15,7 +15,9 @@ ...@@ -15,7 +15,9 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { 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 <vector> #include <vector>
#include <algorithm> #include <algorithm>
......
// 2007-10-02 Paolo Carlini <pcarlini@suse.de> // 2007-10-02 Paolo Carlini <pcarlini@suse.de>
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +17,8 @@ ...@@ -17,7 +17,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/33613 // libstdc++/33613
......
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -15,7 +15,8 @@ ...@@ -15,7 +15,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/35541 // libstdc++/35541
......
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -15,7 +15,8 @@ ...@@ -15,7 +15,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/34730 // libstdc++/34730
......
// 2007-10-02 Paolo Carlini <pcarlini@suse.de> // 2007-10-02 Paolo Carlini <pcarlini@suse.de>
// 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 // 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 // software; you can redistribute it and/or modify it under the
...@@ -17,7 +17,8 @@ ...@@ -17,7 +17,8 @@
// with this library; see the file COPYING3. If not see // with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>. // <http://www.gnu.org/licenses/>.
// { dg-options "-D_GLIBCXX_DEBUG" } // NB: This issue affected only debug-mode.
// { dg-do compile } // { dg-do compile }
// libstdc++/33613 // libstdc++/33613
......
//
// 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
// <http://www.gnu.org/licenses/>.
// { 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 <random>
#include <testsuite_hooks.h>
void
test01()
{
std::uniform_int_distribution<int> u(20, 1);
}
int main()
{
test01();
return 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
// <http://www.gnu.org/licenses/>.
// { 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 <random>
#include <testsuite_hooks.h>
void
test01()
{
std::uniform_real_distribution<double> u(5.0, 0.0);
}
int main()
{
test01();
return 0;
}
// 2006-06-04 Stephen M. Webb <stephen.webb@bregmasoft.com>
//
// 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
// <http://www.gnu.org/licenses/>.
// { 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 <tr1/random>
#include <testsuite_hooks.h>
void
test01()
{
using namespace std::tr1;
uniform_int<int> u(20, 1);
}
int main()
{
test01();
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment