瀏覽代碼

* disable reg. allocator optimization introduced in r21812 for now because it caused some trouble, see #22405

git-svn-id: trunk@22036 -
florian 13 年之前
父節點
當前提交
ecdec2e431
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      compiler/rgobj.pas

+ 2 - 1
compiler/rgobj.pas

@@ -1000,7 +1000,8 @@ unit rgobj;
 
       begin
         ok:=(t<first_imaginary) or
-            ((r<first_imaginary) and (r in usable_register_set)) or
+            // disabled for now, see issue #22405
+            // ((r<first_imaginary) and (r in usable_register_set)) or
             (reginfo[t].degree<usable_registers_cnt) or
             ibitmap[r,t];
       end;