1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

Adapt to changed information in the object files.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5214 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-18 16:26:44 +00:00
parent c52916f461
commit f8e5463278
2 changed files with 9 additions and 4 deletions

View File

@ -224,6 +224,7 @@ void ObjReadData (FILE* F, ObjData* O)
/* Line info indices */
SkipLineInfoList (F);
SkipLineInfoList (F);
}
}

View File

@ -378,7 +378,7 @@ void DumpObjOptions (FILE* F, unsigned long Offset)
case OPT_ARGNUM:
printf (" Data:%26lu", Val);
if (Type == OPT_DATETIME) {
if (Type == OPT_DATETIME) {
/* Print the time as a string */
printf (" (%s)", TimeToStr (Val));
}
@ -544,7 +544,8 @@ void DumpObjImports (FILE* F, unsigned long Offset)
const char* Name = GetString (&StrPool, ReadVar (F));
unsigned Len = strlen (Name);
/* Skip the line infos */
/* Skip both line info lists */
SkipLineInfoList (F);
SkipLineInfoList (F);
/* Print the header */
@ -613,7 +614,8 @@ void DumpObjExports (FILE* F, unsigned long Offset)
Size = ReadVar (F);
}
/* Skip the line infos */
/* Skip both line infos lists */
SkipLineInfoList (F);
SkipLineInfoList (F);
/* Print the header */
@ -700,7 +702,8 @@ void DumpObjDbgSyms (FILE* F, unsigned long Offset)
ExportId = ReadVar (F);
}
/* Skip the line infos */
/* Skip both line info lists */
SkipLineInfoList (F);
SkipLineInfoList (F);
/* Print the header */
@ -937,3 +940,4 @@ void DumpObjSegSize (FILE* F, unsigned long Offset)