From f9cdf3d4ca484743c6cf42f2d0467b8c2b1aad35 Mon Sep 17 00:00:00 2001 From: masta Date: Thu, 12 Jul 2012 01:11:29 +0000 Subject: [PATCH] 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 - --- compiler/rgobj.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/rgobj.pas b/compiler/rgobj.pas index 0cd1f1aa63..35bc2d884c 100644 --- a/compiler/rgobj.pas +++ b/compiler/rgobj.pas @@ -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;