浏览代码

* defstates doesn't affect any crc

git-svn-id: trunk@8927 -
peter 18 年之前
父节点
当前提交
c8ed392469
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      compiler/symdef.pas

+ 3 - 3
compiler/symdef.pas

@@ -953,8 +953,8 @@ implementation
         ppufile.putlongint(DefId);
         ppufile.putderef(typesymderef);
         ppufile.putsmallset(defoptions);
-        oldintfcrc:=ppufile.do_interface_crc;
-        ppufile.do_interface_crc:=false;
+        oldintfcrc:=ppufile.do_crc;
+        ppufile.do_crc:=false;
         ppufile.putsmallset(defstates);
         if df_generic in defoptions then
           begin
@@ -977,7 +977,7 @@ implementation
                 dec(sizeleft,i);
               end;
           end;
-        ppufile.do_interface_crc:=oldintfcrc;
+        ppufile.do_crc:=oldintfcrc;
         if df_specialization in defoptions then
           ppufile.putderef(genericdefderef);
       end;