* tree.c (strip_typedefs): Handle UNDERLYING_TYPE.
* g++.dg/cpp0x/alias-decl-59.C: New test.
From-SVN: r249622
* parser.c (cp_parser_std_attribute_list): Return error_mark if
make_pack_expansion returns an error.
+ 2017-04-18 Marek Polacek <polacek@redhat.com>
+
+ PR c++/80244 - ICE with attribute in template alias.
+ * tree.c (strip_typedefs): Handle UNDERLYING_TYPE.
+
2017-06-22 Jakub Jelinek <jakub@redhat.com>
Backported from mainline
DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (t),
tf_none));
break;
+ case UNDERLYING_TYPE:
+ type = strip_typedefs (UNDERLYING_TYPE_TYPE (t), remove_attributes);
+ result = finish_underlying_type (type);
+ break;
default:
break;
}
PR c++/80241 - ICE with alignas pack expansion.
* g++.dg/cpp0x/alignas11.C: New test.
+ PR c++/80244 - ICE with attribute in template alias.
+ * g++.dg/cpp0x/alias-decl-59.C: New test.
+
2017-06-23 Thomas Preud'homme <thomas.preudhomme@arm.com>
Backport from mainline
--- /dev/null
+// PR c++/80244
+// { dg-do compile { target c++11 } }
+
+template<typename>
+struct A {};
+
+template<typename T>
+using B = A<__underlying_type(T) [[gnu::aligned(4)]]>; // { dg-warning "ignoring attributes on template argument" }
+
+template<typename T>
+using B = A<__underlying_type(T) [[gnu::packed]]>; // { dg-warning "ignoring attributes on template argument" }