소스 검색

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

git-svn-id: trunk@6165 -

Jonas Maebe 18 년 전
부모
커밋
228943271f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)