+2016-05-02 Marek Polacek <polacek@redhat.com>
+
+ PR c/70851
+ * c-decl.c (grokdeclarator): Diagnose when array's size has an
+ incomplete type.
+
2016-04-29 Cesar Philippidis <cesar@codesourcery.com>
PR middle-end/70626
{
if (name)
error_at (loc, "size of array %qE has non-integer type",
- name);
+ name);
else
error_at (loc,
- "size of unnamed array has non-integer type");
+ "size of unnamed array has non-integer type");
+ size = integer_one_node;
+ }
+ /* This can happen with enum forward declaration. */
+ else if (!COMPLETE_TYPE_P (TREE_TYPE (size)))
+ {
+ if (name)
+ error_at (loc, "size of array %qE has incomplete type",
+ name);
+ else
+ error_at (loc, "size of unnamed array has incomplete "
+ "type");
size = integer_one_node;
}
+2016-05-02 Marek Polacek <polacek@redhat.com>
+
+ PR c/70851
+ * gcc.dg/enum-incomplete-3.c: New test.
+
2016-05-02 Marek Polacek <polacek@redhat.com>
Tom de Vries <tom@codesourcery.com>
--- /dev/null
+/* PR c/70851 */
+/* { dg-do compile } */
+/* { dg-options "" } */
+
+enum E e; /* { dg-error "storage size" } */
+
+void bar (int [e]); /* { dg-error "size of unnamed array has incomplete type" } */
+void bar2 (int [][e]); /* { dg-error "size of unnamed array has incomplete type" } */
+
+void
+foo (void)
+{
+ int a1[e]; /* { dg-error "size of array .a1. has incomplete type" } */
+ int a2[e][3]; /* { dg-error "size of array .a2. has incomplete type" } */
+
+ struct S
+ {
+ int a3[e]; /* { dg-error "size of array .a3. has incomplete type" } */
+ };
+}