mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-04 22:49:46 +01:00
* indenting of node names
git-svn-id: trunk@8418 -
This commit is contained in:
parent
523b7b84cd
commit
db98f1eecb
@ -58,6 +58,9 @@ implementation
|
|||||||
*****************************************************************************}
|
*****************************************************************************}
|
||||||
|
|
||||||
{$ifdef EXTDEBUG}
|
{$ifdef EXTDEBUG}
|
||||||
|
var
|
||||||
|
secondprefix : string;
|
||||||
|
|
||||||
procedure logsecond(ht:tnodetype; entry: boolean);
|
procedure logsecond(ht:tnodetype; entry: boolean);
|
||||||
const
|
const
|
||||||
secondnames: array[tnodetype] of string[13] =
|
secondnames: array[tnodetype] of string[13] =
|
||||||
@ -140,9 +143,15 @@ implementation
|
|||||||
p: pchar;
|
p: pchar;
|
||||||
begin
|
begin
|
||||||
if entry then
|
if entry then
|
||||||
p := strpnew('second '+secondnames[ht]+' (entry)')
|
begin
|
||||||
|
secondprefix:=secondprefix+' ';
|
||||||
|
p := strpnew(secondprefix+'second '+secondnames[ht]+' (entry)')
|
||||||
|
end
|
||||||
else
|
else
|
||||||
p := strpnew('second '+secondnames[ht]+' (exit)');
|
begin
|
||||||
|
p := strpnew(secondprefix+'second '+secondnames[ht]+' (exit)');
|
||||||
|
delete(secondprefix,length(secondprefix),1);
|
||||||
|
end;
|
||||||
current_asmdata.CurrAsmList.concat(tai_comment.create(p));
|
current_asmdata.CurrAsmList.concat(tai_comment.create(p));
|
||||||
end;
|
end;
|
||||||
{$endif EXTDEBUG}
|
{$endif EXTDEBUG}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user