Explorar el Código

* increased AsmOutSize from 32kb to 128kb, makes external assembling a
little faster

git-svn-id: trunk@6165 -

Jonas Maebe hace 18 años
padre
commit
228943271f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      compiler/assemble.pas

+ 1 - 1
compiler/assemble.pas

@@ -39,7 +39,7 @@ interface
        { maximum of aasmoutput lists there will be }
        maxoutputlists = 20;
        { buffer size for writing the .s file }
-       AsmOutSize=32768;
+       AsmOutSize=32768*4;
 
     type
       TAssembler=class(TAbstractAssembler)