Rename symbol index => import id because that's what it really is.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4809 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2010-08-17 20:01:54 +00:00
parent e55b19fa8b
commit c921c409e8
4 changed files with 21 additions and 23 deletions

View File

@@ -6,10 +6,10 @@
/* */
/* */
/* */
/* (C) 1998-2008 Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* (C) 1998-2010, Ullrich von Bassewitz */
/* Roemerstrasse 52 */
/* D-70794 Filderstadt */
/* EMail: uz@cc65.org */
/* */
/* */
/* This software is provided 'as-is', without any expressed or implied */
@@ -90,6 +90,7 @@ SymEntry* NewSymEntry (const StrBuf* Name, unsigned Flags)
S->GuessedUse[I] = 0;
}
S->Flags = Flags;
S->ImportId = ~0U;
S->Expr = 0;
S->ExprRefs = AUTO_COLLECTION_INITIALIZER;
S->ExportSize = ADDR_SIZE_DEFAULT;
@@ -662,11 +663,11 @@ long GetSymVal (SymEntry* S)
unsigned GetSymIndex (const SymEntry* S)
/* Return the symbol index for the given symbol */
unsigned GetSymImportId (const SymEntry* S)
/* Return the import id for the given symbol */
{
PRECONDITION (S != 0 && (S->Flags & SF_INDEXED) != 0);
return S->Index;
PRECONDITION (S != 0 && (S->Flags & SF_IMPORT) && S->ImportId != ~0U);
return S->ImportId;
}