Commit 1791b32e authored by mmitchel's avatar mmitchel
Browse files

PR c++/10796

	* decl.c (finish_enum): Implement DR377.

	* decl.c (cp_finish_decl): Don't make variables with reference
	type readonly while they are being initialized.

	PR c++/10796
	* g++.dg/init/enum1.C: New test.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68610 138bc75d-0d04-0410-961f-82ee72b054a4
parent 66795431
2003-06-27 Mark Mitchell <mark@codesourcery.com>
PR c++/10796
* decl.c (finish_enum): Implement DR377.
* decl.c (cp_finish_decl): Don't make variables with reference
type readonly while they are being initialized.
2003-06-26 Mark Mitchell <mark@codesourcery.com> 2003-06-26 Mark Mitchell <mark@codesourcery.com>
   
PR c++/11332 PR c++/11332
......
...@@ -8101,7 +8101,8 @@ cp_finish_decl (tree decl, tree init, tree asmspec_tree, int flags) ...@@ -8101,7 +8101,8 @@ cp_finish_decl (tree decl, tree init, tree asmspec_tree, int flags)
ttype = target_type (type); ttype = target_type (type);
if (! DECL_EXTERNAL (decl) && TREE_READONLY (decl) if (! DECL_EXTERNAL (decl) && TREE_READONLY (decl)
&& TYPE_NEEDS_CONSTRUCTING (type)) && (TYPE_NEEDS_CONSTRUCTING (type)
|| TREE_CODE (type) == REFERENCE_TYPE))
{ {
/* Currently, GNU C++ puts constants in text space, making them /* Currently, GNU C++ puts constants in text space, making them
impossible to initialize. In the future, one would hope for impossible to initialize. In the future, one would hope for
...@@ -13106,24 +13107,36 @@ finish_enum (tree enumtype) ...@@ -13106,24 +13107,36 @@ finish_enum (tree enumtype)
highprec = min_precision (maxnode, unsignedp); highprec = min_precision (maxnode, unsignedp);
precision = MAX (lowprec, highprec); precision = MAX (lowprec, highprec);
/* Set TYPE_MIN_VALUE and TYPE_MAX_VALUE according to `precision'. */ /* DR 377
TYPE_SIZE (enumtype) = NULL_TREE;
IF no integral type can represent all the enumerator values, the
enumeration is ill-formed. */
if (precision > TYPE_PRECISION (long_long_integer_type_node))
{
error ("no integral type can represent all of the enumerator values "
"for `%T'", enumtype);
precision = TYPE_PRECISION (long_long_integer_type_node);
}
/* Compute the minium and maximum values for the type, the size of
the type, and so forth. */
TYPE_PRECISION (enumtype) = precision; TYPE_PRECISION (enumtype) = precision;
TYPE_SIZE (enumtype) = NULL_TREE;
if (unsignedp) if (unsignedp)
fixup_unsigned_type (enumtype); fixup_unsigned_type (enumtype);
else else
fixup_signed_type (enumtype); fixup_signed_type (enumtype);
if (flag_short_enums || (precision > TYPE_PRECISION (integer_type_node))) /* We use "int" or "unsigned int" as the underlying type, unless all
/* Use the width of the narrowest normal C type which is wide the values will not fit or the user has requested that we try to
enough. */ use shorter types where possible. */
TYPE_PRECISION (enumtype) = TYPE_PRECISION (c_common_type_for_size if (precision < TYPE_PRECISION (integer_type_node)
(precision, 1)); && !flag_short_enums)
else {
TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node); TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
TYPE_SIZE (enumtype) = NULL_TREE;
TYPE_SIZE (enumtype) = NULL_TREE; layout_type (enumtype);
layout_type (enumtype); }
/* Fix up all variant types of this enum type. */ /* Fix up all variant types of this enum type. */
for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t)) for (t = TYPE_MAIN_VARIANT (enumtype); t; t = TYPE_NEXT_VARIANT (t))
......
2003-06-27 Mark Mitchell <mark@codesourcery.com>
PR c++/10796
* g++.dg/init/enum1.C: New test.
2003-06-27 Ulrich Weigand <uweigand@de.ibm.com> 2003-06-27 Ulrich Weigand <uweigand@de.ibm.com>
* gcc.dg/20030627-1.c: New test. * gcc.dg/20030627-1.c: New test.
......
enum test {
acceptable = -1,
unacceptable = 0xffffffffffffffffLL
}; // { dg-error "" }
enum test t = acceptable, u = unacceptable;
int main() {
return 0;
}
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