Commit 1cc57b59 by Marek Polacek Committed by Marek Polacek

re PR c++/65558 (crash using __attribute__((__abi_tag__)) on anonymous inline namespace)

	PR c++/65558
	* name-lookup.c (handle_namespace_attrs): Ignore abi_tag attribute
	on an anonymous namespace.

	* g++.dg/cpp0x/pr65558.C: New test.

From-SVN: r221672
parent 2a924bb4
2015-03-25 Marek Polacek <polacek@redhat.com>
PR c++/65558
* name-lookup.c (handle_namespace_attrs): Ignore abi_tag attribute
on an anonymous namespace.
2015-03-25 Marek Polacek <polacek@redhat.com>
PR c++/61670
* class.c (remove_zero_width_bit_fields): Check for null DECL_SIZE.
......
......@@ -3663,6 +3663,12 @@ handle_namespace_attrs (tree ns, tree attributes)
"namespace", name);
continue;
}
if (!DECL_NAME (ns))
{
warning (OPT_Wattributes, "ignoring %qD attribute on anonymous "
"namespace", name);
continue;
}
if (!args)
{
tree dn = DECL_NAME (ns);
......
2015-03-25 Marek Polacek <polacek@redhat.com>
PR c++/65558
* g++.dg/cpp0x/pr65558.C: New test.
2015-03-25 Marek Polacek <polacek@redhat.com>
PR c++/61670
* g++.dg/template/pr61670.C: New test.
......
// PR c++/65558
// { dg-do compile { target c++11 } }
inline namespace __attribute__((__abi_tag__))
{ // { dg-warning "ignoring .__abi_tag__. attribute on anonymous namespace" }
}
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