mirror of
https://github.com/cc65/cc65.git
synced 2024-12-31 11:32:00 +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:
parent
c52916f461
commit
f8e5463278
@ -224,6 +224,7 @@ void ObjReadData (FILE* F, ObjData* O)
|
||||
|
||||
/* Line info indices */
|
||||
SkipLineInfoList (F);
|
||||
SkipLineInfoList (F);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user