Adjust for new empty class parameter passing ABI.
authorJonathan Wakely <jwakely@redhat.com>
Wed, 13 Apr 2016 22:00:50 +0000 (23:00 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 13 Apr 2016 22:00:50 +0000 (23:00 +0100)
* include/bits/c++config (_GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES,
_GLIBCXX_END_NAMESPACE_EMPTY_TYPES, _GLIBCXX_ABI_TAG_EMPTY): Define.
* include/bits/hashtable.h (_Hashtable::_M_emplace): Change signatures
of functions taking empty structs by value. Add a template parameter
to overloads without hints. Rename overloads with hints to
_M_emplace_hint.
(_Hashtable::_M_erase(true_type, const_iterator),
_Hashtable::_M_erase(false_type, const_iterator)): Change signatures
by reordering parameters.
* include/bits/hashtable_policy.h (_Insert::insert): Adjust to call
_M_emplace_hint instead of _M_emplace.
* include/bits/shared_ptr.h (shared_ptr(_Tp1*, _Deleter, _Alloc),
shared_ptr(nullptr_t, _Deleter, _Alloc)): Use _GLIBCXX_ABI_TAG_EMPTY.
* include/bits/shared_ptr_base.h (_Sp_counted_deleter, __shared_count,
__shared_ptr): Likewise.
* include/bits/stl_algo.h (replace_if): Likewise.
* include/bits/stl_pair.h (piecewise_construct_t,
piecewise_construct): Use _GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES.
* include/bits/uses_allocator.h (allocator_arg_t, allocator_arg,
__uses_alloc0): Likewise.
* include/ext/pb_ds/assoc_container.hpp (basic_hash_table): Likewise.
* testsuite/20_util/scoped_allocator/69293_neg.cc: Adjust dg-error.
* testsuite/20_util/shared_ptr/cons/43820_neg.cc: Likewise.
* testsuite/20_util/shared_ptr/cons/void_neg.cc: Likewise.
* testsuite/20_util/uses_allocator/69293_neg.cc: Likewise.
* testsuite/20_util/uses_allocator/cons_neg.cc: Likewise.
* testsuite/ext/profile/mutex_extensions_neg.cc: Likewise.

From-SVN: r234964

16 files changed:
libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/c++config
libstdc++-v3/include/bits/hashtable.h
libstdc++-v3/include/bits/hashtable_policy.h
libstdc++-v3/include/bits/shared_ptr.h
libstdc++-v3/include/bits/shared_ptr_base.h
libstdc++-v3/include/bits/stl_algo.h
libstdc++-v3/include/bits/stl_pair.h
libstdc++-v3/include/bits/uses_allocator.h
libstdc++-v3/include/ext/pb_ds/assoc_container.hpp
libstdc++-v3/testsuite/20_util/scoped_allocator/69293_neg.cc
libstdc++-v3/testsuite/20_util/shared_ptr/cons/43820_neg.cc
libstdc++-v3/testsuite/20_util/shared_ptr/cons/void_neg.cc
libstdc++-v3/testsuite/20_util/uses_allocator/69293_neg.cc
libstdc++-v3/testsuite/20_util/uses_allocator/cons_neg.cc
libstdc++-v3/testsuite/ext/profile/mutex_extensions_neg.cc

index 4fb711b35d84dbef8cdf82b48f4917a7856fa318..2abb015006d4e93bb50bda886268e1006b03ee1f 100644 (file)
@@ -1,3 +1,33 @@
+2016-04-13  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/c++config (_GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES,
+       _GLIBCXX_END_NAMESPACE_EMPTY_TYPES, _GLIBCXX_ABI_TAG_EMPTY): Define.
+       * include/bits/hashtable.h (_Hashtable::_M_emplace): Change signatures
+       of functions taking empty structs by value. Add a template parameter
+       to overloads without hints. Rename overloads with hints to
+       _M_emplace_hint.
+       (_Hashtable::_M_erase(true_type, const_iterator),
+       _Hashtable::_M_erase(false_type, const_iterator)): Change signatures
+       by reordering parameters.
+       * include/bits/hashtable_policy.h (_Insert::insert): Adjust to call
+       _M_emplace_hint instead of _M_emplace.
+       * include/bits/shared_ptr.h (shared_ptr(_Tp1*, _Deleter, _Alloc),
+       shared_ptr(nullptr_t, _Deleter, _Alloc)): Use _GLIBCXX_ABI_TAG_EMPTY.
+       * include/bits/shared_ptr_base.h (_Sp_counted_deleter, __shared_count,
+       __shared_ptr): Likewise.
+       * include/bits/stl_algo.h (replace_if): Likewise.
+       * include/bits/stl_pair.h (piecewise_construct_t,
+       piecewise_construct): Use _GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES.
+       * include/bits/uses_allocator.h (allocator_arg_t, allocator_arg,
+       __uses_alloc0): Likewise.
+       * include/ext/pb_ds/assoc_container.hpp (basic_hash_table): Likewise.
+       * testsuite/20_util/scoped_allocator/69293_neg.cc: Adjust dg-error.
+       * testsuite/20_util/shared_ptr/cons/43820_neg.cc: Likewise.
+       * testsuite/20_util/shared_ptr/cons/void_neg.cc: Likewise.
+       * testsuite/20_util/uses_allocator/69293_neg.cc: Likewise.
+       * testsuite/20_util/uses_allocator/cons_neg.cc: Likewise.
+       * testsuite/ext/profile/mutex_extensions_neg.cc: Likewise.
+
 2016-04-12  Edward Smith-Rowland  <3dw4rd@verizon.net>
 
        Document C++17/TR29124 C++ Special Math Functions.
index 57024e40ec0de20263e3d23170a03a9706df650d..bde003c68a03e9cfb38b1ae5680632895ba99544 100644 (file)
 # define _GLIBCXX_DEPRECATED
 #endif
 
+#if __cplusplus
+
 // Macros for ABI tag attributes.
 #ifndef _GLIBCXX_ABI_TAG_CXX11
 # define _GLIBCXX_ABI_TAG_CXX11 __attribute ((__abi_tag__ ("cxx11")))
 #endif
 
-
-#if __cplusplus
+#if __GXX_ABI_VERSION >= 1010
+namespace std
+{
+  inline namespace _V2 { }
+}
+# define _GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES \
+  _GLIBCXX_END_NAMESPACE_VERSION \
+  namespace _V2 { \
+  _GLIBCXX_BEGIN_NAMESPACE_VERSION
+# define _GLIBCXX_END_NAMESPACE_EMPTY_TYPES \
+  _GLIBCXX_END_NAMESPACE_VERSION \
+  } \
+  _GLIBCXX_BEGIN_NAMESPACE_VERSION
+# define _GLIBCXX_ABI_TAG_EMPTY __attribute ((__abi_tag__ ("cxxempty")))
+#else
+# define _GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES
+# define _GLIBCXX_END_NAMESPACE_EMPTY_TYPES
+# define _GLIBCXX_ABI_TAG_EMPTY
+#endif
 
 // Macro for constexpr, to support in mixed 03/0x mode.
 #ifndef _GLIBCXX_CONSTEXPR
index 5748920cc78b312fb0c755e187f59d304bb177ab..22b718761299f0dadbbb13a4ec69118c7fcbf709 100644 (file)
@@ -663,24 +663,26 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
       _M_insert_multi_node(__node_type* __hint,
                           __hash_code __code, __node_type* __n);
 
-      template<typename... _Args>
-       std::pair<iterator, bool>
-       _M_emplace(std::true_type, _Args&&... __args);
+      template<bool _Uniq, typename... _Args>
+       typename enable_if<_Uniq, std::pair<iterator, bool>>::type
+       _M_emplace(__bool_constant<_Uniq>, _Args&&... __args);
 
-      template<typename... _Args>
-       iterator
-       _M_emplace(std::false_type __uk, _Args&&... __args)
-       { return _M_emplace(cend(), __uk, std::forward<_Args>(__args)...); }
+      template<bool _Uniq, typename... _Args>
+       typename enable_if<!_Uniq, iterator>::type
+       _M_emplace(__bool_constant<_Uniq> __uk, _Args&&... __args)
+       {
+         return _M_emplace_hint(cend(), __uk, std::forward<_Args>(__args)...);
+       }
 
       // Emplace with hint, useless when keys are unique.
       template<typename... _Args>
        iterator
-       _M_emplace(const_iterator, std::true_type __uk, _Args&&... __args)
+       _M_emplace_hint(const_iterator, std::true_type __uk, _Args&&... __args)
        { return _M_emplace(__uk, std::forward<_Args>(__args)...).first; }
 
       template<typename... _Args>
        iterator
-       _M_emplace(const_iterator, std::false_type, _Args&&... __args);
+       _M_emplace_hint(const_iterator, std::false_type, _Args&&... __args);
 
       template<typename _Arg, typename _NodeGenerator>
        std::pair<iterator, bool>
@@ -712,10 +714,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
                  const _NodeGenerator&, std::false_type);
 
       size_type
-      _M_erase(std::true_type, const key_type&);
+      _M_erase(const key_type&, std::true_type);
 
       size_type
-      _M_erase(std::false_type, const key_type&);
+      _M_erase(const key_type&, std::false_type);
 
       iterator
       _M_erase(size_type __bkt, __node_base* __prev_n, __node_type* __n);
@@ -731,8 +733,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        iterator
        emplace_hint(const_iterator __hint, _Args&&... __args)
        {
-         return _M_emplace(__hint, __unique_keys(),
-                           std::forward<_Args>(__args)...);
+         return _M_emplace_hint(__hint, __unique_keys(),
+                                std::forward<_Args>(__args)...);
        }
 
       // Insert member functions via inheritance.
@@ -748,7 +750,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
       size_type
       erase(const key_type& __k)
-      { return _M_erase(__unique_keys(), __k); }
+      { return _M_erase(__k, __unique_keys()); }
 
       iterator
       erase(const_iterator, const_iterator);
@@ -1502,12 +1504,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
           typename _Alloc, typename _ExtractKey, typename _Equal,
           typename _H1, typename _H2, typename _Hash, typename _RehashPolicy,
           typename _Traits>
-    template<typename... _Args>
+    template<bool _Uniq, typename... _Args>
       auto
       _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
                 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
-      _M_emplace(std::true_type, _Args&&... __args)
-      -> pair<iterator, bool>
+      _M_emplace(__bool_constant<_Uniq>, _Args&&... __args)
+      -> typename enable_if<_Uniq, pair<iterator, bool>>::type
       {
        // First build the node to get access to the hash code
        __node_type* __node = this->_M_allocate_node(std::forward<_Args>(__args)...);
@@ -1544,7 +1546,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
       auto
       _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
                 _H1, _H2, _Hash, _RehashPolicy, _Traits>::
-      _M_emplace(const_iterator __hint, std::false_type, _Args&&... __args)
+      _M_emplace_hint(const_iterator __hint, std::false_type, _Args&&... __args)
       -> iterator
       {
        // First build the node to get its hash code.
@@ -1769,7 +1771,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     auto
     _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
               _H1, _H2, _Hash, _RehashPolicy, _Traits>::
-    _M_erase(std::true_type, const key_type& __k)
+    _M_erase(const key_type& __k, std::true_type)
     -> size_type
     {
       __hash_code __code = this->_M_hash_code(__k);
@@ -1793,7 +1795,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     auto
     _Hashtable<_Key, _Value, _Alloc, _ExtractKey, _Equal,
               _H1, _H2, _Hash, _RehashPolicy, _Traits>::
-    _M_erase(std::false_type, const key_type& __k)
+    _M_erase(const key_type& __k, std::false_type)
     -> size_type
     {
       __hash_code __code = this->_M_hash_code(__k);
index 7a2ac92f83907b32f44037df6fa62be182138e52..ceb78b4d709450e7043fb622c9b6505689c4a13f 100644 (file)
@@ -906,8 +906,8 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        insert(const_iterator __hint, _Pair&& __v)
        {
          __hashtable& __h = this->_M_conjure_hashtable();
-         return __h._M_emplace(__hint, __unique_keys(),
-                               std::forward<_Pair>(__v));
+         return __h._M_emplace_hint(__hint, __unique_keys(),
+                                    std::forward<_Pair>(__v));
        }
    };
 
index b22477e96b29acefa3f8c93b7be15945d83e6133..f4c27543c7bd49f5ebfc7dd69e9223e871fd201f 100644 (file)
@@ -166,6 +166,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        *  __shared_ptr will release __p by calling __d(__p)
        */
       template<typename _Tp1, typename _Deleter, typename _Alloc>
+       _GLIBCXX_ABI_TAG_EMPTY
        shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a)
        : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
 
@@ -185,6 +186,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        *  The last owner will call __d(__p)
        */
       template<typename _Deleter, typename _Alloc>
+       _GLIBCXX_ABI_TAG_EMPTY
        shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
        : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
 
index e844c9c91fe5cedf219afabd91836727f82c9af6..6d523e1798612f5ccb3014b5adfe57af5d4cc9a8 100644 (file)
@@ -436,6 +436,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        typedef _Sp_ebo_helper<1, _Alloc>       _Alloc_base;
 
       public:
+       _GLIBCXX_ABI_TAG_EMPTY
        _Impl(_Ptr __p, _Deleter __d, const _Alloc& __a) noexcept
        : _M_ptr(__p), _Del_base(__d), _Alloc_base(__a)
        { }
@@ -454,6 +455,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
       : _M_impl(__p, __d, _Alloc()) { }
 
       // __d(__p) must not throw.
+      _GLIBCXX_ABI_TAG_EMPTY
       _Sp_counted_deleter(_Ptr __p, _Deleter __d, const _Alloc& __a) noexcept
       : _M_impl(__p, __d, __a) { }
 
@@ -584,6 +586,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        { }
 
       template<typename _Ptr, typename _Deleter, typename _Alloc>
+       _GLIBCXX_ABI_TAG_EMPTY
        __shared_count(_Ptr __p, _Deleter __d, _Alloc __a) : _M_pi(0)
        {
          typedef _Sp_counted_deleter<_Ptr, _Deleter, _Alloc, _Lp> _Sp_cd_type;
@@ -900,6 +903,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        }
 
       template<typename _Tp1, typename _Deleter, typename _Alloc>
+       _GLIBCXX_ABI_TAG_EMPTY
        __shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a)
        : _M_ptr(__p), _M_refcount(__p, __d, std::move(__a))
        {
@@ -914,6 +918,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        { }
 
       template<typename _Deleter, typename _Alloc>
+       _GLIBCXX_ABI_TAG_EMPTY
         __shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
        : _M_ptr(0), _M_refcount(__p, __d, std::move(__a))
        { }
@@ -1039,6 +1044,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        { __shared_ptr(__p, __d).swap(*this); }
 
       template<typename _Tp1, typename _Deleter, typename _Alloc>
+       _GLIBCXX_ABI_TAG_EMPTY
        void
         reset(_Tp1* __p, _Deleter __d, _Alloc __a)
         { __shared_ptr(__p, __d, std::move(__a)).swap(*this); }
index fbd03a79e1ebdfd4624221e7d8d2e37a53406288..28e1e3b2331b9b706da65051432b6cf14dcec49c 100644 (file)
@@ -4270,6 +4270,7 @@ _GLIBCXX_BEGIN_NAMESPACE_ALGO
    *  is true then the assignment @c *i = @p __new_value is performed.
   */
   template<typename _ForwardIterator, typename _Predicate, typename _Tp>
+    _GLIBCXX_ABI_TAG_EMPTY
     void
     replace_if(_ForwardIterator __first, _ForwardIterator __last,
               _Predicate __pred, const _Tp& __new_value)
index 37ee5cc405328a5df727deb5a69418b65ae3cdcd..e6ff00eec17d491911cdd0ff99ab5992a85a1902 100644 (file)
@@ -72,12 +72,17 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
    */
 
 #if __cplusplus >= 201103L
+
+_GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES
+
   /// piecewise_construct_t
   struct piecewise_construct_t { explicit piecewise_construct_t() = default; };
 
   /// piecewise_construct
   constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
 
+_GLIBCXX_END_NAMESPACE_EMPTY_TYPES
+
   // Forward declarations.
   template<typename...>
     class tuple;
index b1ff58a294b79d717052f7bbe70643c4f95ead4d..86162a8af8a01bbdf4a996348e514d813bb90000 100644 (file)
@@ -42,11 +42,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     using __is_erased_or_convertible
       = __or_<is_same<_Tp, __erased_type>, is_convertible<_Alloc, _Tp>>;
 
+_GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES
+
   /// [allocator.tag]
   struct allocator_arg_t { explicit allocator_arg_t() = default; };
 
   constexpr allocator_arg_t allocator_arg = allocator_arg_t();
 
+_GLIBCXX_END_NAMESPACE_EMPTY_TYPES
+
   template<typename _Tp, typename _Alloc, typename = __void_t<>>
     struct __uses_allocator_helper
     : false_type { };
@@ -65,11 +69,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   struct __uses_alloc_base { };
 
+_GLIBCXX_BEGIN_NAMESPACE_EMPTY_TYPES
+
   struct __uses_alloc0 : __uses_alloc_base
   {
     struct _Sink { void operator=(const void*) { } } _M_a;
   };
 
+_GLIBCXX_END_NAMESPACE_EMPTY_TYPES
+
   template<typename _Alloc>
     struct __uses_alloc1 : __uses_alloc_base { const _Alloc* _M_a; };
 
index 571d9468d7d4038002b64d28780d3bc07a402f80..a6b1e277a306d892eba3f76bf0b9efb17313923a 100644 (file)
@@ -120,36 +120,44 @@ namespace __gnu_pbds
       basic_hash_table(T0 t0) : base_type(t0) { }
 
     template<typename T0, typename T1>
+      _GLIBCXX_ABI_TAG_EMPTY
       basic_hash_table(T0 t0, T1 t1) : base_type(t0, t1) { }
 
     template<typename T0, typename T1, typename T2>
+      _GLIBCXX_ABI_TAG_EMPTY
       basic_hash_table(T0 t0, T1 t1, T2 t2) : base_type(t0, t1, t2) { }
 
     template<typename T0, typename T1, typename T2, typename T3>
+      _GLIBCXX_ABI_TAG_EMPTY
       basic_hash_table(T0 t0, T1 t1, T2 t2, T3 t3)
       : base_type(t0, t1, t2, t3) { }
 
     template<typename T0, typename T1, typename T2, typename T3, typename T4>
+      _GLIBCXX_ABI_TAG_EMPTY
       basic_hash_table(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4)
       : base_type(t0, t1, t2, t3, t4) { }
 
     template<typename T0, typename T1, typename T2, typename T3, typename T4,
             typename T5>
+      _GLIBCXX_ABI_TAG_EMPTY
       basic_hash_table(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5)
       : base_type(t0, t1, t2, t3, t4, t5) { }
 
     template<typename T0, typename T1, typename T2, typename T3, typename T4,
             typename T5, typename T6>
+      _GLIBCXX_ABI_TAG_EMPTY
       basic_hash_table(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6)
       : base_type(t0, t1, t2, t3, t4, t5, t6) { }
 
     template<typename T0, typename T1, typename T2, typename T3, typename T4,
             typename T5, typename T6, typename T7>
+      _GLIBCXX_ABI_TAG_EMPTY
       basic_hash_table(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7)
       : base_type(t0, t1, t2, t3, t4, t5, t6, t7) { }
 
     template<typename T0, typename T1, typename T2, typename T3, typename T4,
             typename T5, typename T6, typename T7, typename T8>
+      _GLIBCXX_ABI_TAG_EMPTY
       basic_hash_table(T0 t0, T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6,
                       T7 t7, T8 t8)
       : base_type(t0, t1, t2, t3, t4, t5, t6, t7, t8)
index f3b2d87ab99b4f070f61dbc38c614abdbc76343a..5487b0ac6a1a58487c1b2e2478487c0f9d8017bb 100644 (file)
@@ -47,5 +47,5 @@ test01()
   scoped_alloc sa;
   auto p = sa.allocate(1);
   sa.construct(p);  // this is required to be ill-formed
-  // { dg-error "static assertion failed" "" { target *-*-* } 89 }
+  // { dg-error "static assertion failed" "" { target *-*-* } 97 }
 }
index 395094f8bbebc8a01a49c748d67dbdf35250cf57..a0ce1f5a61b621bb3c23bd1240152e0fb00707cc 100644 (file)
@@ -32,7 +32,7 @@ void test01()
 {
   X* px = 0;
   std::shared_ptr<X> p1(px);   // { dg-error "here" }
-  // { dg-error "incomplete" "" { target *-*-* } 889 }
+  // { dg-error "incomplete" "" { target *-*-* } 892 }
 
   std::shared_ptr<X> p9(ap());  // { dg-error "here" }
   // { dg-error "incomplete" "" { target *-*-* } 307 }
index 8843ffea429ca235948520ded7389da16ed42a77..88036fdcee91bf1b52c86d94ca60b606824594fe 100644 (file)
@@ -25,5 +25,5 @@
 void test01()
 {
   std::shared_ptr<void> p((void*)nullptr);   // { dg-error "here" }
-  // { dg-error "incomplete" "" { target *-*-* } 888 }
+  // { dg-error "incomplete" "" { target *-*-* } 891 }
 }
index 19417fc2cef4209f8a0bed2cb0497f059524f7ba..88e1ea10d84808d408effc4191c370dd408660bb 100644 (file)
@@ -45,5 +45,5 @@ test01()
 {
   alloc_type a;
   std::tuple<X> t(std::allocator_arg, a); // this is required to be ill-formed
-  // { dg-error "static assertion failed" "" { target *-*-* } 89 }
+  // { dg-error "static assertion failed" "" { target *-*-* } 97 }
 }
index b3df4ae9d7d5f0cd30421aa81295450df597d41f..e4cd2765bf792e54f7f6449c2aa16e95070906e7 100644 (file)
@@ -44,4 +44,4 @@ void test01()
 
   tuple<Type> t(allocator_arg, a, 1);
 }
-// { dg-error "static assertion failed" "" { target *-*-* } 89 }
+// { dg-error "static assertion failed" "" { target *-*-* } 97 }
index e59d666307d2dbf7713f09d432d2af145336a63c..8ffdee89f2a9a588af552ccc7aab208db3ac2102 100644 (file)
@@ -25,7 +25,7 @@
 
 #include <vector>
 
-// { dg-error "multiple inlined namespaces" "" { target *-*-* } 324 }
+// { dg-error "multiple inlined namespaces" "" { target *-*-* } 343 }
 
 // "template argument 1 is invalid"
 // { dg-prune-output "tuple:993" }