mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 00:29:31 +00:00
Fixed the error recovery integer type used for bit-fields.
This commit is contained in:
parent
5c3ff714ae
commit
9b2d27d1e1
@ -905,6 +905,8 @@ static int ParseFieldWidth (Declarator* D)
|
||||
** otherwise the width of the field.
|
||||
*/
|
||||
{
|
||||
ExprDesc Expr;
|
||||
|
||||
if (CurTok.Tok != TOK_COLON) {
|
||||
/* No bit-field declaration */
|
||||
return -1;
|
||||
@ -918,7 +920,16 @@ static int ParseFieldWidth (Declarator* D)
|
||||
/* Avoid a diagnostic storm by giving the bit-field the widest valid
|
||||
** signed type, and continuing to parse.
|
||||
*/
|
||||
D->Type[0].C = T_INT;
|
||||
D->Type[0].C = T_LONG;
|
||||
}
|
||||
|
||||
if (IsTypeEnum (D->Type) && IsIncompleteESUType (D->Type)) {
|
||||
/* If the type is an enum, it must be complete */
|
||||
Error ("Bit-field has incomplete type '%s'",
|
||||
GetFullTypeName (D->Type));
|
||||
|
||||
/* Avoid a diagnostic storm */
|
||||
D->Type[0].C = T_LONG;
|
||||
}
|
||||
|
||||
/* We currently support integral types up to long */
|
||||
@ -927,12 +938,12 @@ static int ParseFieldWidth (Declarator* D)
|
||||
Error ("cc65 currently supports only long-sized and smaller bit-field types");
|
||||
|
||||
/* Avoid a diagnostic storm */
|
||||
D->Type[0].C = T_INT;
|
||||
D->Type[0].C = T_LONG;
|
||||
}
|
||||
|
||||
/* Read the width */
|
||||
NextToken ();
|
||||
ExprDesc Expr = NoCodeConstAbsIntExpr (hie1);
|
||||
Expr = NoCodeConstAbsIntExpr (hie1);
|
||||
|
||||
if (Expr.IVal < 0) {
|
||||
Error ("Negative width in bit-field");
|
||||
|
Loading…
Reference in New Issue
Block a user