mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 20:26:00 +02:00
+ print more symbol properties to the console
This commit is contained in:
parent
628fcb9b1c
commit
92592be8e4
@ -518,7 +518,12 @@ implementation
|
||||
for i:=0 to Data.ObjSymbolList.Count-1 do
|
||||
begin
|
||||
objsym:=TObjSymbol(Data.ObjSymbolList[i]);
|
||||
Writeln(objsym.Name, ' bind=', objsym.Bind);
|
||||
Write(objsym.Name, ' bind=', objsym.Bind, ' typ=', objsym.typ, ' address=', objsym.address, ' objsection=');
|
||||
if assigned(objsym.objsection) then
|
||||
Write(objsym.objsection.Name)
|
||||
else
|
||||
Write('nil');
|
||||
Writeln;
|
||||
end;
|
||||
|
||||
Writeln('ObjSectionList:');
|
||||
|
Loading…
Reference in New Issue
Block a user