X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=symbol.c;h=d4761214006bf4a98e631cc89fb8321344e4d447;hp=f10c55ad85b2a723425b1f6c479ee4baff32be20;hb=062214e62031c26d372edc2e68473ebb64f6a506;hpb=11a78647f7f170e6ea39dd04a3734a359151debb diff --git a/symbol.c b/symbol.c index f10c55a..d476121 100644 --- a/symbol.c +++ b/symbol.c @@ -91,7 +91,12 @@ SYM * NewSymbol(char * name, int type, int envno) symbol->stype = (BYTE)type; symbol->senv = (WORD)envno; symbol->sattr = 0; - symbol->sattre = (rgpu || rdsp ? RISCSYM : 0); +//we don't do this, it could be a forward reference! +// symbol->sattr = DEFINED; // We just defined it... + // This is a bad assumption. Not every symbol 1st seen in a RISC section is + // a RISC symbol! +// symbol->sattre = (rgpu || rdsp ? RISCSYM : 0); + symbol->sattre = 0; symbol->svalue = 0; symbol->sorder = NULL; symbol->uid = currentUID++; @@ -151,20 +156,22 @@ SYM * lookup(char * name, int type, int envno) if (symbol->stype == type // Type, envno and name must match && symbol->senv == envno && *name == *symbol->sname // Fast check for first character - && !strcmp(name, symbol->sname)) + && !strcmp(name, symbol->sname)) // More expensive check break; symbol = symbol->snext; } - return symbol; // Return NULL or matching symbol + // Return NULL or matching symbol + return symbol; } // // Put symbol on "order-of-declaration" list of symbols // -void sym_decl(SYM * symbol) +//void sym_decl(SYM * symbol) +void AddToSymbolOrderList(SYM * symbol) { if (symbol->sattr & SDECLLIST) return; // Already on list