Debugger: Asm Window, display offset for symbols without line-info / display symbol, if there was no data for previous line

This commit is contained in:
Martin 2021-09-14 19:56:43 +02:00
parent 915126ea96
commit 05b1e7d170

View File

@ -704,7 +704,10 @@ begin
[Format('%s:%u %s', [ALine.FileName, ALine.SourceLine, ALine.Statement]),
ALine.PasCode]);
end;
lmsFuncName: Result:= ALine.FileName + ' ' + ALine.Statement;
lmsFuncName: if ALine.SourceLine > 0 then
Result:= Format('%s+%u %s', [ALine.FileName, ALine.SourceLine, ALine.Statement])
else
Result:= ALine.FileName + ' ' + ALine.Statement;
end;
end;
@ -1026,7 +1029,8 @@ procedure TAssemblerDlg.UpdateLineDataEx(ALineMap: TAsmDlgLineEntries; AFirstLin
Result := (AItm^.FuncName <> '');
if Result
then Result := (AItm^.Offset = 0)
or ( (APrvItm <> nil) and (AItm^.FuncName <> APrvItm^.FuncName) );
or ( (APrvItm <> nil) and (AItm^.FuncName <> APrvItm^.FuncName) )
or (APrvItm = nil);
end;
end;