mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 17:29:50 +00:00
Output all positions in a file for unresolved externals.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5221 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
c71d236da6
commit
5f0e6dd7e9
@ -749,11 +749,14 @@ static void PrintUnresolved (ExpCheckFunc F, void* Data)
|
||||
"Unresolved external `%s' referenced in:\n",
|
||||
GetString (E->Name));
|
||||
while (Imp) {
|
||||
const LineInfo* LI = GetImportPos (Imp);
|
||||
unsigned J;
|
||||
for (J = 0; J < CollCount (&Imp->RefLines); ++J) {
|
||||
const LineInfo* LI = CollConstAt (&Imp->RefLines, J);
|
||||
fprintf (stderr,
|
||||
" %s(%lu)\n",
|
||||
GetSourceName (LI),
|
||||
GetSourceLine (LI));
|
||||
}
|
||||
Imp = Imp->Next;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user