More work on .sizeof, fixed problems with cheap locals
git-svn-id: svn://svn.cc65.org/cc65/trunk@2704 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -145,7 +145,7 @@ SymTable* ParseScopedIdent (char* Name, StrBuf* FullName)
|
||||
NextTok ();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
SymEntry* ParseScopedSymName (int AllocNew)
|
||||
@@ -174,7 +174,7 @@ SymEntry* ParseScopedSymName (int AllocNew)
|
||||
* symbol.
|
||||
*/
|
||||
if (AllocNew) {
|
||||
return NewSymEntry (Ident);
|
||||
return NewSymEntry (Ident, SF_NONE);
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user