1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-14 00:32:08 +00:00

Fixed the last fix. Sigh:-(

git-svn-id: svn://svn.cc65.org/cc65/trunk@1909 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-01-20 21:02:57 +00:00
parent 4ca598de3a
commit 6e6560abd9

View File

@ -80,9 +80,9 @@ static void Parse (void)
/* Parse until end of input */ /* Parse until end of input */
while (CurTok.Tok != TOK_CEOF) { while (CurTok.Tok != TOK_CEOF) {
DeclSpec Spec; DeclSpec Spec;
Declaration Decl; Declaration Decl;
int NeedStorage; int NeedStorage;
/* Check for empty statements */ /* Check for empty statements */
if (CurTok.Tok == TOK_SEMI) { if (CurTok.Tok == TOK_SEMI) {
@ -107,11 +107,13 @@ static void Parse (void)
ParseDeclSpec (&Spec, SC_EXTERN | SC_STATIC, T_INT); ParseDeclSpec (&Spec, SC_EXTERN | SC_STATIC, T_INT);
/* Don't accept illegal storage classes */ /* Don't accept illegal storage classes */
if ((Spec.StorageClass & SC_AUTO) != 0 && if ((Spec.StorageClass & SC_TYPE) == 0) {
(Spec.StorageClass & SC_REGISTER) != 0) { if ((Spec.StorageClass & SC_AUTO) != 0 ||
Error ("Illegal storage class"); (Spec.StorageClass & SC_REGISTER) != 0) {
Spec.StorageClass = SC_EXTERN | SC_STATIC; Error ("Illegal storage class");
} Spec.StorageClass = SC_EXTERN | SC_STATIC;
}
}
/* Check if this is only a type declaration */ /* Check if this is only a type declaration */
if (CurTok.Tok == TOK_SEMI) { if (CurTok.Tok == TOK_SEMI) {