c-common.c (struct c_common_resword): Add __underlying_type.
authorPaolo Carlini <paolo.carlini@oracle.com>
Mon, 25 Apr 2011 23:50:35 +0000 (23:50 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Mon, 25 Apr 2011 23:50:35 +0000 (23:50 +0000)
/gcc
2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>

* c-family/c-common.c (struct c_common_resword): Add
__underlying_type.
* c-family/c-common.h (enum rid): Add RID_UNDERLYING_TYPE.
* doc/extend.texi: Document __underlying_type.

/cp
2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>

* cp-tree.def: Add a new UNDERLYING_TYPE tree code.
* cp-tree.h (enum cp_trait_kind): Add CPTK_UNDERLYING_TYPE, tidy.
(UNDERLYING_TYPE_TYPE): Add.
* cp-objcp-common.c (cp_common_init_ts): Mark UNDERLYING_TYPE
as TS_COMMON.
* parser.c (cp_lexer_next_token_is_decl_specifier_keyword,
cp_parser_simple_type_specifier): Handle UNDERLYING_TYPE.
(cp_parser_trait_expr): Deal with RID_UNDERLYING_TYPE; tidy.
* semantics.c (finish_underlying_type): New.
* typeck.c (structural_comptypes): Handle UNDERLYING_TYPE.
* error.c (dump_type, dump_type_prefix, dump_type_suffix): Likewise.
* cxx-pretty-print.c (p_cxx_type_id): Likewise.
* tree.c (cp_walk_subtrees): Likewise.
* pt.c (for_each_template_parm_r, tsubst, unify,
dependent_type_p_r): Likewise.
* mangle.c (write_type): Sorry for __underlying_type.

/testsuite
2011-04-25  Paolo Carlini  <paolo.carlini@oracle.com>

* g++.dg/ext/underlying_type1.C: New.
* g++.dg/ext/underlying_type2.C: Likewise.
* g++.dg/ext/underlying_type3.C: Likewise.
* g++.dg/ext/underlying_type4.C: Likewise.
* g++.dg/ext/underlying_type5.C: Likewise.
* g++.dg/ext/underlying_type6.C: Likewise.
* g++.dg/ext/underlying_type7.C: Likewise.
* g++.dg/ext/underlying_type8.C: Likewise.
* g++.dg/ext/underlying_type9.C: Likewise.
* g++.dg/ext/underlying_type10.C: Likewise.

From-SVN: r172945

gcc/ChangeLog
gcc/cp/ChangeLog
gcc/doc/extend.texi

index 334ee8f6b86ae122b58f657500eff17a0b780534..69132f4bf05c594a04b39df785e561df631727ec 100644 (file)
@@ -3,6 +3,7 @@
        * c-family/c-common.c (struct c_common_resword): Add
        __underlying_type.
        * c-family/c-common.h (enum rid): Add RID_UNDERLYING_TYPE.
+        * doc/extend.texi: Document __underlying_type.
 
 2011-04-25  Segher Boessenkool  <segher@kernel.crashing.org>
 
index 303a4c9dd1f61b38676bb803fbe67cdf395cab68..c0ea9d36b5859ee1a13070813e5f1267a24978e5 100644 (file)
@@ -16,7 +16,6 @@
        * pt.c (for_each_template_parm_r, tsubst, unify,
        dependent_type_p_r): Likewise.
        * mangle.c (write_type): Sorry for __underlying_type.
-       * doc/extend.texi: Document __underlying_type.
 
 2011-04-25  Jason Merrill  <jason@redhat.com>
 
index eddff9539d046a0ca05077eb70bc8c0d793d5ed1..3335196deae071b3cf9f984649939b5586a66c72 100644 (file)
@@ -14422,6 +14422,10 @@ type, (possibly cv-qualified) @code{void}, or an array of unknown bound.
 If @code{type} is a cv union type ([basic.compound]) the trait is
 true, else it is false.
 
+@item __underlying_type (type)
+The underlying type of @code{type}.  Requires: @code{type} shall be
+an enumeration type ([dcl.enum]).
+
 @end table
 
 @node Java Exceptions