From d0c4f85e516604d86c61f6c5a457281ea50963e6 Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 29 Aug 2009 19:05:01 +0000 Subject: [PATCH] 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 --- src/cc65/compile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc65/compile.c b/src/cc65/compile.c index c51191885..befb1e9c6 100644 --- a/src/cc65/compile.c +++ b/src/cc65/compile.c @@ -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)) {