Make the old "AllocNew" flag for symbols an enum and add an additional flag

that allows to lookup a symbol without any flags added to it.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5884 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2012-10-27 19:50:49 +00:00
parent a3ae2e9125
commit f90fa9cc29
5 changed files with 54 additions and 45 deletions

View File

@@ -6,7 +6,7 @@
/* */
/* */
/* */
/* (C) 1998-2010, Ullrich von Bassewitz */
/* (C) 1998-2012, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
@@ -38,6 +38,11 @@
/* cc65 */
#include "symtab.h"
/*****************************************************************************/
/* Forwards */
/*****************************************************************************/
@@ -45,7 +50,6 @@
struct StrBuf;
struct SymTable;
@@ -64,7 +68,7 @@ struct SymTable* ParseScopedIdent (struct StrBuf* Name, struct StrBuf* FullName)
* by the caller for error messages or similar.
*/
struct SymEntry* ParseScopedSymName (int AllowNew);
struct SymEntry* ParseScopedSymName (SymFindAction Action);
/* Parse a (possibly scoped) symbol name, search for it in the symbol table
* and return the symbol table entry.
*/
@@ -74,7 +78,7 @@ struct SymTable* ParseScopedSymTable (void);
* symbol space and return the symbol table struct.
*/
struct SymEntry* ParseAnySymName (int AllocNew);
struct SymEntry* ParseAnySymName (SymFindAction Action);
/* Parse a cheap local symbol or a a (possibly scoped) symbol name, search
* for it in the symbol table and return the symbol table entry.
*/