Write imports out to the debug info file. Add the id of the corresponding
export. git-svn-id: svn://svn.cc65.org/cc65/trunk@5186 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -200,7 +200,7 @@ void ObjReadDbgSyms (FILE* F, unsigned long Pos, ObjData* O)
|
||||
DbgSymCount = ReadVar (F);
|
||||
CollGrow (&O->DbgSyms, DbgSymCount);
|
||||
for (I = 0; I < DbgSymCount; ++I) {
|
||||
CollAppend (&O->DbgSyms, ReadDbgSym (F, O));
|
||||
CollAppend (&O->DbgSyms, ReadDbgSym (F, O, I));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -276,7 +276,7 @@ void ObjReadScopes (FILE* F, unsigned long Pos, ObjData* O)
|
||||
CollGrow (&O->Scopes, ScopeCount);
|
||||
for (I = 0; I < ScopeCount; ++I) {
|
||||
CollAppend (&O->Scopes, ReadScope (F, O, I));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user