소스 검색

* estimatedtempsize should be a longint to avoid warnings on 8 bit targets

git-svn-id: trunk@24198 -
florian 12 년 전
부모
커밋
b41728c129
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compiler/procinfo.pas

+ 1 - 1
compiler/procinfo.pas

@@ -127,7 +127,7 @@ unit procinfo;
 
           { some architectures need to know a stack size before the first compilation pass
             estimatedtempsize contains an estimated value how big temps will get }
-          estimatedtempsize : aint;
+          estimatedtempsize : longint;
 
           { is this a constructor that calls another constructor on itself
             (either inherited, or another constructor of the same class)?