Browse Source

* shorten mangledname names much quicker for nested procedures

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

+ 1 - 1
compiler/symdef.pas

@@ -769,7 +769,7 @@ implementation
            newlen:=length(s);
            { Replace with CRC if the parameter line is very long }
            if (newlen-oldlen>12) and
-              ((newlen>128) or (newlen-oldlen>64)) then
+              ((newlen+length(prefix)>128) or (newlen-oldlen>32)) then
              begin
                crc:=$ffffffff;
                for i:=0 to tprocdef(st.defowner).paras.count-1 do