mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-20 04:49:33 +01:00
* better DFA debugging information
git-svn-id: trunk@25975 -
This commit is contained in:
parent
89f34965e9
commit
2fc4a7fdd7
@ -189,7 +189,11 @@ unit optdfa;
|
|||||||
}
|
}
|
||||||
{$ifdef DEBUG_DFA}
|
{$ifdef DEBUG_DFA}
|
||||||
if not(changed) and b then
|
if not(changed) and b then
|
||||||
writeln('Another DFA pass caused by: ',nodetype2str[n.nodetype],'(',n.fileinfo.line,',',n.fileinfo.column,')');
|
begin
|
||||||
|
writeln('Another DFA pass caused by: ',nodetype2str[n.nodetype],'(',n.fileinfo.line,',',n.fileinfo.column,')');
|
||||||
|
write(' Life info set was: ');PrintDFASet(Output,n.optinfo^.life);writeln;
|
||||||
|
write(' Life info set will be: ');PrintDFASet(Output,l);writeln;
|
||||||
|
end;
|
||||||
{$endif DEBUG_DFA}
|
{$endif DEBUG_DFA}
|
||||||
|
|
||||||
changed:=changed or b;
|
changed:=changed or b;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user