瀏覽代碼

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 年之前
父節點
當前提交
f9cdf3d4ca
共有 1 個文件被更改,包括 2 次插入2 次删除
  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;