mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 21:39:12 +02:00
FpDebug: Do not stop on lines with unknown line info (linenr=0)
git-svn-id: trunk@47222 -
This commit is contained in:
parent
f6bbc53755
commit
f4818c2bfd
@ -1043,6 +1043,8 @@ begin
|
|||||||
if (((FStoreStepSrcFilename=sym.FileName) and (FStoreStepSrcLineNo=sym.Line)) {or FStepOut}) and
|
if (((FStoreStepSrcFilename=sym.FileName) and (FStoreStepSrcLineNo=sym.Line)) {or FStepOut}) and
|
||||||
(FStoreStepFuncAddr=sym.Address.Address) then
|
(FStoreStepFuncAddr=sym.Address.Address) then
|
||||||
result := dcsiSameLine
|
result := dcsiSameLine
|
||||||
|
else if sym.Line = 0 then
|
||||||
|
result := dcsiNoLineInfo
|
||||||
else
|
else
|
||||||
result := dcsiNewLine;
|
result := dcsiNewLine;
|
||||||
sym.ReleaseReference;
|
sym.ReleaseReference;
|
||||||
|
Loading…
Reference in New Issue
Block a user