Commit bdaaa8b7 by Ville Voutilainen Committed by Ville Voutilainen

Complete the implementation of N4230, Nested namespace definition.

/c-family
2015-09-21  Ville Voutilainen  <ville.voutilainen@gmail.com>

	Complete the implementation of N4230, Nested namespace definition.
	* c-cppbuiltin.c: Add __cpp_namespace_attributes and
	__cpp_nested_namespace_definitions.

/cp
2015-09-21  Ville Voutilainen  <ville.voutilainen@gmail.com>

	Complete the implementation of N4230, Nested namespace definition.
	* parser.c (cp_parser_namespace_definition): Support namespace
	attributes both before and after the namespace identifier.

/testsuite
2015-09-21  Ville Voutilainen  <ville.voutilainen@gmail.com>

	Complete the implementation of N4230, Nested namespace definition.
	* g++.dg/cpp1y/feat-cxx11-neg.C: Add tests for C++17 namespace
	attributes and nested namespace definitions.
	* g++.dg/cpp1y/feat-cxx98-neg.C: Likewise.
	* g++.dg/cpp1z/feat-cxx1z.C: Likewise.
	* g++.dg/cpp1y/feat-cxx14-neg.C: New.
	* g++.dg/cpp1z/namespace-attribs.C: Likewise.
	* g++.dg/cpp1z/nested-namespace-def1.C: Add tests for attributes
	appearing before the namespace identifier.

From-SVN: r227977
parent 87b470b3
2015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com>
Complete the implementation of N4230, Nested namespace definition.
* c-cppbuiltin.c: Add __cpp_namespace_attributes and
__cpp_nested_namespace_definitions.
2015-09-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
* c-pragma.c (handle_pragma_diagnostic): Fix wrong return.
......
......@@ -870,6 +870,8 @@ c_cpp_builtins (cpp_reader *pfile)
{
/* Set feature test macros for C++1z. */
cpp_define (pfile, "__cpp_static_assert=201411");
cpp_define (pfile, "__cpp_namespace_attributes=201411");
cpp_define (pfile, "__cpp_nested_namespace_definitions=201411");
}
if (flag_concepts)
/* Use a value smaller than the 201507 specified in
......
2015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com>
Complete the implementation of N4230, Nested namespace definition.
* parser.c (cp_parser_namespace_definition): Support namespace
attributes both before and after the namespace identifier.
2015-09-19 Trevor Saunders <tbsaunde@tbsaunde.org>
* cp-gimplify.c (gimplify_must_not_throw_expr): Adjust.
......
......@@ -11645,6 +11645,9 @@ cp_parser_declaration (cp_parser* parser)
(token2.type == CPP_NAME
&& (cp_lexer_peek_nth_token (parser->lexer, 3)->type
!= CPP_EQ))
|| (token2.type == CPP_OPEN_SQUARE
&& cp_lexer_peek_nth_token (parser->lexer, 3)->type
== CPP_OPEN_SQUARE)
/* An unnamed namespace definition. */
|| token2.type == CPP_OPEN_BRACE
|| token2.keyword == RID_ATTRIBUTE))
......@@ -16969,6 +16972,9 @@ cp_parser_namespace_definition (cp_parser* parser)
/* Look for the `namespace' keyword. */
token = cp_parser_require_keyword (parser, RID_NAMESPACE, RT_NAMESPACE);
/* Parse any specified attributes before the identifier. */
attribs = cp_parser_attributes_opt (parser);
/* Get the name of the namespace. We do not attempt to distinguish
between an original-namespace-definition and an
extension-namespace-definition at this point. The semantic
......@@ -16978,8 +16984,15 @@ cp_parser_namespace_definition (cp_parser* parser)
else
identifier = NULL_TREE;
/* Parse any specified attributes. */
attribs = cp_parser_attributes_opt (parser);
/* Parse any specified attributes after the identifier. */
tree post_ident_attribs = cp_parser_attributes_opt (parser);
if (post_ident_attribs)
{
if (attribs)
attribs = chainon (attribs, post_ident_attribs);
else
attribs = post_ident_attribs;
}
/* Start the namespace. */
push_namespace (identifier);
2015-09-21 Ville Voutilainen <ville.voutilainen@gmail.com>
Complete the implementation of N4230, Nested namespace definition.
* g++.dg/cpp1y/feat-cxx11-neg.C: Add tests for C++17 namespace
attributes and nested namespace definitions.
* g++.dg/cpp1y/feat-cxx98-neg.C: Likewise.
* g++.dg/cpp1z/feat-cxx1z.C: Likewise.
* g++.dg/cpp1y/feat-cxx14-neg.C: New.
* g++.dg/cpp1z/namespace-attribs.C: Likewise.
* g++.dg/cpp1z/nested-namespace-def1.C: Add tests for attributes
appearing before the namespace identifier.
2015-09-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
PR c/66415
......
......@@ -38,6 +38,17 @@
# error "__cpp_sized_deallocation" // { dg-error "error" }
#endif
// C++17 features:
#ifndef __cpp_namespace_attributes
# error "__cpp_namespace_attributes" // { dg-error "error" }
#endif
#ifndef __cpp_nested_namespace_definitions
# error "__cpp_nested_namespace_definitions" // { dg-error "error" }
#endif
// Array TS features:
#ifndef __cpp_runtime_arrays
......
// { dg-do compile { target c++14 } }
// C++17 features:
#ifndef __cpp_namespace_attributes
# error "__cpp_namespace_attributes" // { dg-error "error" }
#endif
#ifndef __cpp_nested_namespace_definitions
# error "__cpp_nested_namespace_definitions" // { dg-error "error" }
#endif
......@@ -113,6 +113,16 @@
# error "__cpp_sized_deallocation" // { dg-error "error" }
#endif
// C++17 features:
#ifndef __cpp_namespace_attributes
# error "__cpp_namespace_attributes" // { dg-error "error" }
#endif
#ifndef __cpp_nested_namespace_definitions
# error "__cpp_nested_namespace_definitions" // { dg-error "error" }
#endif
// C++11 attributes:
#ifdef __has_cpp_attribute
......
......@@ -6,3 +6,15 @@
#elif __cpp_static_assert != 201411
# error "__cpp_static_assert != 201411"
#endif
#ifndef __cpp_namespace_attributes
# error "__cpp_namespace_attributes"
#elif __cpp_namespace_attributes != 201411
# error "__cpp_namespace_attributes != 201411"
#endif
#ifndef __cpp_nested_namespace_definitions
# error "__cpp_nested_namespace_definitions"
#elif __cpp_nested_namespace_definitions != 201411
# error "__cpp_nested_namespace_definitions != 201411"
#endif
// { dg-options "-std=c++1z" }
namespace A __attribute ((visibility ("default"))) {}
namespace B [[deprecated]] {} // { dg-warning "ignored" }
namespace __attribute ((visibility ("default"))) C {}
namespace [[deprecated]] D {} // { dg-warning "ignored" }
......@@ -17,3 +17,7 @@ namespace G __attribute ((visibility ("default"))) ::H {} // { dg-error "cannot
namespace H [[deprecated]] ::I {} // { dg-error "cannot have attributes|ignored" }
namespace __attribute ((visibility ("default"))) I::J {} // { dg-error "cannot have attributes" }
namespace [[deprecated]] J::K {} // { dg-error "cannot have attributes|ignored" }
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