Browse Source

* defstates doesn't affect any crc

git-svn-id: trunk@8927 -
peter 18 years ago
parent
commit
c8ed392469
1 changed files with 3 additions and 3 deletions
  1. 3 3
      compiler/symdef.pas

+ 3 - 3
compiler/symdef.pas

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