Browse Source

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 -
masta 13 năm trước cách đây
mục cha
commit
f9cdf3d4ca
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      compiler/rgobj.pas

+ 2 - 2
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;