]> git.sur5r.net Git - cc65/blobdiff - src/ca65/symtab.h
Don't use SF_TRAMPOLINE, change symbol references instead.
[cc65] / src / ca65 / symtab.h
index 20aa2a354f2b4ccf22f18901829f05bd1721d5ce..bc32a2c793ed7f481b0304d4fa5aa8c9e0f5ac8e 100644 (file)
@@ -111,6 +111,12 @@ SymTable* SymFindAnyScope (SymTable* Parent, const char* Name);
  * scope.
  */
 
+SymEntry* SymFindLocal (const char* Name, int AllocNew);
+/* Find a cheap local symbol. If AllocNew is given and the entry is not
+ * found, create a new one. Return the entry found, or the new entry created,
+ * or - in case AllocNew is zero - return 0.
+ */
+
 SymEntry* SymFind (SymTable* Scope, const char* Name, int AllocNew);
 /* Find a new symbol table entry in the given table. If AllocNew is given and
  * the entry is not found, create a new one. Return the entry found, or the