瀏覽代碼

* added comment, stating that Z80 has no condition subsets

git-svn-id: trunk@45172 -
nickysn 5 年之前
父節點
當前提交
f8c2d4a632
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      compiler/z80/cpubase.pas

+ 1 - 3
compiler/z80/cpubase.pas

@@ -470,10 +470,8 @@ unit cpubase;
     { Checks if Subset is a subset of c (e.g. "less than" is a subset of "less than or equal" }
     function condition_in(const Subset, c: TAsmCond): Boolean;
       begin
+        { Z80 has no condition subsets }
         Result := {(c.cond = C_None) or} conditions_equal(Subset, c);
-
-        { TODO: Can a PowerPC programmer please update this procedure to
-          actually detect subsets? Thanks. [Kit] }
       end;