Be more specific in spilling debug messages

Output "Spilling: " instead of "XXX: " in front of spilling debug
messages. This makes the output easier to process.

git-svn-id: trunk@21890 -
This commit is contained in:
masta 2012-07-12 01:11:29 +00:00
parent e2a744e19b
commit f9cdf3d4ca

View File

@ -1875,7 +1875,7 @@ unit rgobj;
add_cpu_interferences(ins);
list.insertafter(ins,pos);
{$ifdef DEBUG_SPILLING}
list.Insertbefore(tai_comment.Create(strpnew('XXX: Spill Read')),ins);
list.Insertbefore(tai_comment.Create(strpnew('Spilling: Spill Read')),ins);
{$endif}
end;
@ -1888,7 +1888,7 @@ unit rgobj;
add_cpu_interferences(ins);
list.insertafter(ins,pos);
{$ifdef DEBUG_SPILLING}
list.Insertbefore(tai_comment.Create(strpnew('XXX: Spill Write')),ins);
list.Insertbefore(tai_comment.Create(strpnew('Spilling: Spill Write')),ins);
{$endif}
end;