From: Jason Merrill Date: Mon, 14 Jul 2014 05:25:19 +0000 (-0400) Subject: re PR c++/60628 ([c++11] ICE initializing array of auto) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7ce5ae457b6843015074781a5a4d76a3765b2c1c;p=gcc.git re PR c++/60628 ([c++11] ICE initializing array of auto) PR c++/60628 * decl.c (create_array_type_for_decl): Only check for auto once. From-SVN: r212504 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index bdad6d90ddf..45116eb70b3 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,8 @@ 2014-07-13 Jason Merrill + PR c++/60628 + * decl.c (create_array_type_for_decl): Only check for auto once. + PR c++/58636 * call.c (build_list_conv): Don't try to build a list of references. diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index dae85c2d584..8f829d09e98 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -8540,9 +8540,11 @@ create_array_type_for_decl (tree name, tree type, tree size) /* 8.3.4/1: If the type of the identifier of D contains the auto type-specifier, the program is ill-formed. */ - if (pedantic && type_uses_auto (type)) - pedwarn (input_location, OPT_Wpedantic, - "declaration of %qD as array of %", name); + if (type_uses_auto (type)) + { + error ("%qD declared as array of %qT", name, type); + return error_mark_node; + } /* If there are some types which cannot be array elements, issue an error-message and return. */ @@ -8601,14 +8603,6 @@ create_array_type_for_decl (tree name, tree type, tree size) && (flag_iso || warn_vla > 0)) pedwarn (input_location, OPT_Wvla, "array of array of runtime bound"); - /* 8.3.4p1: ...if the type of the identifier of D contains the auto - type-specifier, the program is ill-formed. */ - if (type_uses_auto (type)) - { - error ("%qD declared as array of %qT", name, type); - return error_mark_node; - } - /* Figure out the index type for the array. */ if (size) itype = compute_array_index_type (name, size, tf_warning_or_error);