mirror of
https://github.com/cc65/cc65.git
synced 2025-04-05 13:37:17 +00:00
Disallowed empty enums.
This commit is contained in:
parent
97065faf1a
commit
fe44fe963f
@ -549,8 +549,8 @@ static SymEntry* ParseEnumDecl (const char* Name)
|
||||
ident Ident;
|
||||
long MinConstant = 0;
|
||||
unsigned long MaxConstant = 0;
|
||||
const Type* NewType = type_int; /* new enumerator type */
|
||||
const Type* MemberType = type_int; /* default enumerator type */
|
||||
const Type* NewType = 0; /* new member type */
|
||||
const Type* MemberType = type_int; /* default member type */
|
||||
|
||||
/* Accept forward definitions */
|
||||
if (CurTok.Tok != TOK_LCURLY) {
|
||||
@ -677,6 +677,11 @@ static SymEntry* ParseEnumDecl (const char* Name)
|
||||
}
|
||||
ConsumeRCurly ();
|
||||
|
||||
/* Check if there have been any members. Error if none */
|
||||
if (NewType == 0) {
|
||||
Error ("Empty enum is invalid");
|
||||
}
|
||||
|
||||
/* This evaluates the underlying type of the whole enum */
|
||||
MemberType = GetEnumeratorType (MinConstant, MaxConstant, 0);
|
||||
if (MemberType == 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user