Fix wrong check for typedef which caused non allocation of storage for structs
after the latest changes. git-svn-id: svn://svn.cc65.org/cc65/trunk@4074 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
7ced0a2ceb
commit
d0c4f85e51
1 changed files with 2 additions and 2 deletions
|
@ -141,8 +141,8 @@ static void Parse (void)
|
|||
* specified as static. This means that "extern int i" will not
|
||||
* get storage allocated.
|
||||
*/
|
||||
if ((Decl.StorageClass & SC_FUNC) == 0 &&
|
||||
(Decl.StorageClass & SC_TYPEDEF) == 0 &&
|
||||
if ((Decl.StorageClass & SC_FUNC) != SC_FUNC &&
|
||||
(Decl.StorageClass & SC_TYPEDEF) != SC_TYPEDEF &&
|
||||
((Spec.Flags & DS_DEF_STORAGE) != 0 ||
|
||||
(Decl.StorageClass & (SC_STATIC | SC_EXTERN)) == SC_STATIC)) {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue