This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/76732] GCC should warn on repeated initializer for same array element / struct member.
- From: "rusty at rustcorp dot com.au" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 17 Aug 2016 02:00:21 +0000
- Subject: [Bug c/76732] GCC should warn on repeated initializer for same array element / struct member.
- Authentication-results: sourceware.org; auth=none
- Auto-submitted: auto-generated
- References: <bug-76732-4@http.gcc.gnu.org/bugzilla/>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732
--- Comment #6 from rusty at rustcorp dot com.au ---
"manu at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org> writes:
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=76732
>
> Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:
>
> What |Removed |Added
> ----------------------------------------------------------------------------
> CC| |manu at gcc dot gnu.org
>
> --- Comment #3 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
> GCC already warns for this (for C)
>
> test.c:1:32: warning: initialized field overwritten [-Woverride-init]
> int x[] = { [0] = 1, +3, [1] = 1 };
Ah, thanks!
Surprised -Wall doesn't set -Woverride-init then; presume this was a
conscious decision?
I'll add it to my CFLAGS.
Thanks again!
Rusty.