This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/20209] [3.3/3.4/4.0 Regression] Missing warnings for "aggregate has a partly bracketed initializer"
- From: "jakub at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 25 Feb 2005 16:38:05 -0000
- Subject: [Bug c++/20209] [3.3/3.4/4.0 Regression] Missing warnings for "aggregate has a partly bracketed initializer"
- References: <20050225150211.20209.pinskia@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From jakub at gcc dot gnu dot org 2005-02-25 16:38 -------
Yeah, caused by addition of reshape_init.
Bigger testcase:
// PR c++/20209
// { dg-do compile }
// { dg-options "-Wmissing-braces" }
struct S { char a[6]; int b[2]; };
struct T { int a; int b[2]; };
struct U { int a; T b; };
struct V { char a[6]; int b[2]; int c; };
struct W { int a; int b[2]; int c; };
struct X { int a; W b; int c; };
S a = { { "hello" }, { 1, 2 } };
S b = { { "hello" }, 1, 2 }; // { dg-warning "" }
S c = { "hello", { 1, 2 } };
S d = { "hello", 1, 2 }; // { dg-warning "" }
T e = { 1, { 2, 3 } };
T f = { 1, 2, 3 }; // { dg-warning "" }
U g = { 1, { 2, { 3, 4 } } };
U h = { 1, 2, { 3, 4 } }; // { dg-warning "" }
U i = { 1, 2, 3, 4 }; // { dg-warning "" }
V j = { { "hello" }, { 1, 2 }, 3 };
V k = { { "hello" }, 1, 2, 3 }; // { dg-warning "" }
V l = { "hello", { 1, 2 }, 3 };
V m = { "hello", 1, 2, 3 }; // { dg-warning "" }
W n = { 1, { 2, 3 }, 4 };
W o = { 1, 2, 3, 4 }; // { dg-warning "" }
X p = { 1, { 2, { 3, 4 }, 5 }, 6 };
X q = { 1, 2, { 3, 4 }, 5, 6 }; // { dg-warning "" }
X r = { 1, 2, 3, 4, 5, 6 }; // { dg-warning "" }
--
What |Removed |Added
----------------------------------------------------------------------------
CC| |mark at codesourcery dot com
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2005-02-25 16:38:03
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20209