1
0
mirror of https://github.com/cc65/cc65.git synced 2025-04-06 04:41:08 +00:00

Any field without a name is legal but useless in a union.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4086 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2009-08-30 08:30:55 +00:00
parent a09c71b3ff
commit 2ddeb069eb

View File

@ -556,14 +556,9 @@ static SymEntry* ParseUnionDecl (const char* Name)
/* Check for fields without a name */
if (Decl.Ident[0] == '\0') {
if (FieldWidth < 0) {
/* A non bit-field without a name is legal but useless */
Warning ("Declaration does not declare anything");
goto NextMember;
} else {
/* A bit-field without a name does nothing in a union */
goto NextMember;
}
/* Any field without a name is legal but useless in a union */
Warning ("Declaration does not declare anything");
goto NextMember;
}
/* Handle sizes */