Allow to display symbols and line infos for symbols.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5219 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-08-18 20:34:31 +00:00
parent 3a079ff332
commit 1527d26e91
2 changed files with 221 additions and 3 deletions

View File

@@ -4534,7 +4534,7 @@ static void ProcessSymInfo (InputData* D)
}
/* Resolve the line infos for the symbol definition */
for (J = 0; I < CollCount (&S->DefLineInfoList); ++J) {
for (J = 0; J < CollCount (&S->DefLineInfoList); ++J) {
/* Get the id of this line info */
unsigned LineId = CollIdAt (&S->DefLineInfoList, J);
@@ -4554,7 +4554,7 @@ static void ProcessSymInfo (InputData* D)
}
/* Resolve the line infos for symbol references */
for (J = 0; I < CollCount (&S->RefLineInfoList); ++J) {
for (J = 0; J < CollCount (&S->RefLineInfoList); ++J) {
/* Get the id of this line info */
unsigned LineId = CollIdAt (&S->RefLineInfoList, J);