re PR c++/54441 (Infinite loop with brace initializer on zero-length array)
authorJason Merrill <jason@redhat.com>
Wed, 5 Sep 2012 04:17:12 +0000 (00:17 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Wed, 5 Sep 2012 04:17:12 +0000 (00:17 -0400)
PR c++/54441
* decl.c (reshape_init_class): Handle invalid initializer for
0-length array member.

* error.c (dump_type_suffix): Correct handling of 0-length arrays.

From-SVN: r190962

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/cp/error.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/flexary3.C [new file with mode: 0644]

index 4501217..629ab57 100644 (file)
@@ -1,5 +1,11 @@
 2012-09-04  Jason Merrill  <jason@redhat.com>
 
+       PR c++/54441
+       * decl.c (reshape_init_class): Handle invalid initializer for
+       0-length array member.
+
+       * error.c (dump_type_suffix): Correct handling of 0-length arrays.
+
        PR c++/54420
        * cp-tree.h (LAMBDANAME_P): Remove.
        (LAMBDA_TYPE_P): Check CLASSTYPE_LAMBDA_EXPR instead.
index 8024373..b665fe8 100644 (file)
@@ -5094,6 +5094,7 @@ reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
   while (d->cur != d->end)
     {
       tree field_init;
+      constructor_elt *old_cur = d->cur;
 
       /* Handle designated initializers, as an extension.  */
       if (d->cur->index)
@@ -5130,6 +5131,15 @@ reshape_init_class (tree type, reshape_iter *d, bool first_initializer_p,
       if (field_init == error_mark_node)
        return error_mark_node;
 
+      if (d->cur->index && d->cur == old_cur)
+       {
+         /* This can happen with an invalid initializer for a flexible
+            array member (c++/54441).  */
+         if (complain & tf_error)
+           error ("invalid initializer for %q#D", field);
+         return error_mark_node;
+       }
+
       CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init);
 
       /* [dcl.init.aggr]
index 80a145d..1872d01 100644 (file)
@@ -846,7 +846,9 @@ dump_type_suffix (tree t, int flags)
        {
          tree dtype = TYPE_DOMAIN (t);
          tree max = TYPE_MAX_VALUE (dtype);
-         if (host_integerp (max, 0))
+         if (integer_all_onesp (max))
+           pp_character (cxx_pp, '0');
+         else if (host_integerp (max, 0))
            pp_wide_integer (cxx_pp, tree_low_cst (max, 0) + 1);
          else if (TREE_CODE (max) == MINUS_EXPR)
            dump_expr (TREE_OPERAND (max, 0),
index 31d219a..62dfe13 100644 (file)
@@ -1,5 +1,8 @@
 2012-09-04  Jason Merrill  <jason@redhat.com>
 
+       PR c++/54441
+       * g++.dg/ext/flexary3.C: New.
+
        PR c++/54420
        * g++.dg/cpp0x/lambda/lambda-intname.C: New.
 
diff --git a/gcc/testsuite/g++.dg/ext/flexary3.C b/gcc/testsuite/g++.dg/ext/flexary3.C
new file mode 100644 (file)
index 0000000..906877b
--- /dev/null
@@ -0,0 +1,10 @@
+// PR c++/54441
+// { dg-options "" }
+
+struct s { char c[]; };
+
+int main()
+{
+    struct s s = { .c = 0 };   // { dg-error "initializer" }
+    return 0;
+}