Merge pull request #51 from ksherlock/debugger_forward_struct_decl

Fix debugger symbol tables with forward declared structs
This commit is contained in:
Stephen Heumann
2018-02-10 21:17:03 -06:00
committed by GitHub

View File

@@ -982,6 +982,9 @@ var
begin {ExpandStructType}
ip := tp^.fieldList;
{ fieldList is nil if this is a forward declared struct. }
if ip = nil then ip := defaultStruct^.fieldList;
while ip <> nil do begin
GenSymbol(ip, none);
ip := ip^.next;