mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
Merge pull request #2276 from acqn/Diagnostics
[cc65] Fixed diagnostics
This commit is contained in:
commit
85a15007ec
@ -257,6 +257,7 @@ static void Parse (void)
|
||||
|
||||
/* Parse the initialization */
|
||||
ParseInit (Sym->Type);
|
||||
|
||||
} else {
|
||||
|
||||
/* This is a declaration */
|
||||
@ -326,21 +327,19 @@ NextDecl:
|
||||
}
|
||||
}
|
||||
|
||||
/* Function declaration? */
|
||||
if (Sym && IsTypeFunc (Sym->Type)) {
|
||||
|
||||
/* Function */
|
||||
if (CurTok.Tok == TOK_SEMI) {
|
||||
/* Prototype only */
|
||||
NeedClean = 0;
|
||||
NextToken ();
|
||||
} else if (CurTok.Tok == TOK_LCURLY) {
|
||||
/* ISO C: The type category in a function definition cannot be
|
||||
** inherited from a typedef.
|
||||
*/
|
||||
/* Finish the declaration */
|
||||
if (Sym) {
|
||||
/* Function definition? */
|
||||
if (IsTypeFunc (Sym->Type) && CurTok.Tok == TOK_LCURLY) {
|
||||
if (IsTypeFunc (Spec.Type) && TypeCmp (Sym->Type, Spec.Type).C >= TC_EQUAL) {
|
||||
/* ISO C: The type category in a function definition cannot be
|
||||
** inherited from a typedef.
|
||||
*/
|
||||
Error ("Function cannot be defined with a typedef");
|
||||
} else if (comma) {
|
||||
/* ISO C: A function definition cannot shall its return type
|
||||
** specifier with other declarators.
|
||||
*/
|
||||
Error ("';' expected after top level declarator");
|
||||
}
|
||||
|
||||
@ -350,30 +349,19 @@ NextDecl:
|
||||
|
||||
/* Make sure we aren't omitting any work */
|
||||
CheckDeferredOpAllDone ();
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
if (Sym) {
|
||||
} else {
|
||||
/* Must be followed by a semicolon */
|
||||
if (CurTok.Tok != TOK_SEMI) {
|
||||
if (ConsumeSemi ()) {
|
||||
NeedClean = 0;
|
||||
} else {
|
||||
NeedClean = -1;
|
||||
}
|
||||
ConsumeSemi ();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* Try some smart error recovery */
|
||||
if (PrevErrorCount != ErrorCount && NeedClean < 0) {
|
||||
/* Some fix point tokens that are used for error recovery */
|
||||
static const token_t TokenList[] = { TOK_SEMI, TOK_RCURLY };
|
||||
|
||||
SmartErrorSkip ();
|
||||
SkipTokens (TokenList, sizeof (TokenList) / sizeof (TokenList[0]));
|
||||
if (CurTok.Tok == TOK_SEMI || CurTok.Tok == TOK_RCURLY) {
|
||||
NextToken ();
|
||||
}
|
||||
SmartErrorSkip (1);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -117,11 +117,22 @@ static int CloseBrace (Collection* C, token_t Tok)
|
||||
|
||||
|
||||
|
||||
int SmartErrorSkip (void)
|
||||
/* Try some smart error recovery. Skip tokens until either a comma or semicolon
|
||||
** that is not enclosed in an open parenthesis/bracket/curly brace, or until an
|
||||
** unpaired right parenthesis/bracket/curly brace is reached. Return 0 if it is
|
||||
** the former case, or -1 if it is the latter case. */
|
||||
int SmartErrorSkip (int WholeDecl)
|
||||
/* Try some smart error recovery.
|
||||
**
|
||||
** - If WholeDecl is 0:
|
||||
** Skip tokens until a comma or closing curly brace that is not enclosed in
|
||||
** an open parenthesis/bracket/curly brace, or until a semicolon, EOF or
|
||||
** unpaired right parenthesis/bracket/curly brace is reached.
|
||||
**
|
||||
** - If WholeDecl is non-0:
|
||||
** Skip tokens until a closing curly brace that is not enclosed in an open
|
||||
** parenthesis/bracket/curly brace, or until a semicolon or EOF is reached.
|
||||
**
|
||||
** Return 0 if this exits as soon as it reaches an EOF. Return 0 as well if
|
||||
** this exits with no open parentheses/brackets/curly braces. Otherwise, return
|
||||
** -1.
|
||||
*/
|
||||
{
|
||||
Collection C = AUTO_COLLECTION_INITIALIZER;
|
||||
int Res = 0;
|
||||
@ -142,31 +153,41 @@ int SmartErrorSkip (void)
|
||||
|
||||
case TOK_RPAREN:
|
||||
case TOK_RBRACK:
|
||||
if (CloseBrace (&C, CurTok.Tok)) {
|
||||
Res = -1;
|
||||
goto ExitPoint;
|
||||
if (CloseBrace (&C, CurTok.Tok) < 0) {
|
||||
if (!WholeDecl) {
|
||||
Res = -1;
|
||||
goto ExitPoint;
|
||||
}
|
||||
NextToken ();
|
||||
}
|
||||
break;
|
||||
|
||||
case TOK_RCURLY:
|
||||
if (CloseBrace (&C, CurTok.Tok)) {
|
||||
Res = -1;
|
||||
goto ExitPoint;
|
||||
if (CloseBrace (&C, CurTok.Tok) < 0) {
|
||||
if (!WholeDecl) {
|
||||
Res = -1;
|
||||
goto ExitPoint;
|
||||
}
|
||||
NextToken ();
|
||||
} else if (CollCount (&C) == 0) {
|
||||
goto ExitPoint;
|
||||
}
|
||||
break;
|
||||
|
||||
case TOK_COMMA:
|
||||
if (CollCount (&C) == 0) {
|
||||
if (CollCount (&C) == 0 && !WholeDecl) {
|
||||
goto ExitPoint;
|
||||
}
|
||||
NextToken ();
|
||||
break;
|
||||
|
||||
case TOK_SEMI:
|
||||
if (CollCount (&C) != 0) {
|
||||
Res = -1;
|
||||
}
|
||||
goto ExitPoint;
|
||||
|
||||
case TOK_CEOF:
|
||||
Res = -1;
|
||||
goto ExitPoint;
|
||||
|
||||
default:
|
||||
@ -1058,8 +1079,9 @@ static SymEntry* ParseUnionSpec (const char* Name, unsigned* DSFlags)
|
||||
while (CurTok.Tok != TOK_RCURLY) {
|
||||
|
||||
/* Get the type of the entry */
|
||||
DeclSpec Spec;
|
||||
int SignednessSpecified = 0;
|
||||
DeclSpec Spec;
|
||||
int SignednessSpecified = 0;
|
||||
int NeedClean = 0;
|
||||
|
||||
/* Check for a _Static_assert */
|
||||
if (CurTok.Tok == TOK_STATIC_ASSERT) {
|
||||
@ -1076,7 +1098,7 @@ static SymEntry* ParseUnionSpec (const char* Name, unsigned* DSFlags)
|
||||
Declarator Decl;
|
||||
|
||||
/* Get type and name of the struct field */
|
||||
ParseDecl (&Spec, &Decl, DM_ACCEPT_IDENT);
|
||||
NeedClean = ParseDecl (&Spec, &Decl, DM_ACCEPT_IDENT);
|
||||
|
||||
/* Check for a bit-field declaration */
|
||||
FieldWidth = ParseFieldWidth (&Decl);
|
||||
@ -1172,7 +1194,18 @@ NextMember: if (CurTok.Tok != TOK_COMMA) {
|
||||
}
|
||||
NextToken ();
|
||||
}
|
||||
ConsumeSemi ();
|
||||
|
||||
/* Must be followed by a semicolon */
|
||||
if (NeedClean >= 0 && ConsumeSemi ()) {
|
||||
NeedClean = 0;
|
||||
} else {
|
||||
NeedClean = -1;
|
||||
}
|
||||
|
||||
/* Try some smart error recovery */
|
||||
if (NeedClean < 0) {
|
||||
SmartErrorSkip (1);
|
||||
}
|
||||
}
|
||||
|
||||
/* Skip the closing brace */
|
||||
@ -1236,8 +1269,9 @@ static SymEntry* ParseStructSpec (const char* Name, unsigned* DSFlags)
|
||||
while (CurTok.Tok != TOK_RCURLY) {
|
||||
|
||||
/* Get the type of the entry */
|
||||
DeclSpec Spec;
|
||||
int SignednessSpecified = 0;
|
||||
DeclSpec Spec;
|
||||
int SignednessSpecified = 0;
|
||||
int NeedClean = 0;
|
||||
|
||||
/* Check for a _Static_assert */
|
||||
if (CurTok.Tok == TOK_STATIC_ASSERT) {
|
||||
@ -1262,7 +1296,7 @@ static SymEntry* ParseStructSpec (const char* Name, unsigned* DSFlags)
|
||||
}
|
||||
|
||||
/* Get type and name of the struct field */
|
||||
ParseDecl (&Spec, &Decl, DM_ACCEPT_IDENT);
|
||||
NeedClean = ParseDecl (&Spec, &Decl, DM_ACCEPT_IDENT);
|
||||
|
||||
/* Check for a bit-field declaration */
|
||||
FieldWidth = ParseFieldWidth (&Decl);
|
||||
@ -1403,7 +1437,18 @@ NextMember: if (CurTok.Tok != TOK_COMMA) {
|
||||
}
|
||||
NextToken ();
|
||||
}
|
||||
ConsumeSemi ();
|
||||
|
||||
/* Must be followed by a semicolon */
|
||||
if (NeedClean >= 0 && ConsumeSemi ()) {
|
||||
NeedClean = 0;
|
||||
} else {
|
||||
NeedClean = -1;
|
||||
}
|
||||
|
||||
/* Try some smart error recovery */
|
||||
if (NeedClean < 0) {
|
||||
SmartErrorSkip (1);
|
||||
}
|
||||
}
|
||||
|
||||
if (BitOffs > 0) {
|
||||
@ -1778,7 +1823,7 @@ static void ParseOldStyleParamList (FuncDesc* F)
|
||||
Error ("Identifier expected for parameter name");
|
||||
|
||||
/* Try some smart error recovery */
|
||||
if (SmartErrorSkip () < 0) {
|
||||
if (SmartErrorSkip (0) < 0) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -1868,7 +1913,7 @@ static void ParseOldStyleParamList (FuncDesc* F)
|
||||
|
||||
if (PrevErrorCount != ErrorCount && CurTok.Tok != TOK_LCURLY) {
|
||||
/* Try some smart error recovery */
|
||||
SmartErrorSkip ();
|
||||
SmartErrorSkip (0);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1953,7 +1998,7 @@ static void ParseAnsiParamList (FuncDesc* F)
|
||||
|
||||
if (PrevErrorCount != ErrorCount) {
|
||||
/* Try some smart error recovery */
|
||||
if (SmartErrorSkip () < 0) {
|
||||
if (SmartErrorSkip (0) < 0) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -2335,7 +2380,7 @@ int ParseDecl (const DeclSpec* Spec, Declarator* D, declmode_t Mode)
|
||||
|
||||
/* Try some smart error recovery */
|
||||
if (CurTok.Tok != TOK_LCURLY || !IsTypeFunc (D->Type)) {
|
||||
return SmartErrorSkip ();
|
||||
return SmartErrorSkip (0);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -128,11 +128,22 @@ typedef enum {
|
||||
|
||||
|
||||
|
||||
int SmartErrorSkip (void);
|
||||
/* Try some smart error recovery. Skip tokens until either a comma or semicolon
|
||||
** that is not enclosed in an open parenthesis/bracket/curly brace, or until an
|
||||
** unpaired right parenthesis/bracket/curly brace is reached. Return 0 if it is
|
||||
** the former case, or -1 if it is the latter case. */
|
||||
int SmartErrorSkip (int WholeDecl);
|
||||
/* Try some smart error recovery.
|
||||
**
|
||||
** - If WholeDecl is 0:
|
||||
** Skip tokens until a comma or closing curly brace that is not enclosed in
|
||||
** an open parenthesis/bracket/curly brace, or until a semicolon, EOF or
|
||||
** unpaired right parenthesis/bracket/curly brace is reached.
|
||||
**
|
||||
** - If WholeDecl is non-0:
|
||||
** Skip tokens until a closing curly brace that is not enclosed in an open
|
||||
** parenthesis/bracket/curly brace, or until a semicolon or EOF is reached.
|
||||
**
|
||||
** Return 0 if this exits as soon as it reaches an EOF. Return 0 as well if
|
||||
** this exits with no open parentheses/brackets/curly braces. Otherwise, return
|
||||
** -1.
|
||||
*/
|
||||
|
||||
Type* ParseType (Type* Type);
|
||||
/* Parse a complete type specification */
|
||||
|
@ -1412,9 +1412,9 @@ static void Primary (ExprDesc* E)
|
||||
} else {
|
||||
/* Let's see if this is a C99-style declaration */
|
||||
DeclSpec Spec;
|
||||
ParseDeclSpec (&Spec, TS_DEFAULT_TYPE_INT, SC_AUTO);
|
||||
ParseDeclSpec (&Spec, TS_DEFAULT_TYPE_NONE, SC_AUTO);
|
||||
|
||||
if (Spec.Type->C != T_END) {
|
||||
if ((Spec.Flags & DS_DEF_TYPE) == 0) {
|
||||
/* Recognized but not supported */
|
||||
Error ("Mixed declarations and code are not supported in cc65");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user