소스 검색

* nostackframe is not allowed by newer FPCs for pascal functions/procedure (and was never recommended)

git-svn-id: trunk@24870 -
florian 12 년 전
부모
커밋
ff3295d8fd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tests/bench/shootout/src/mandelbrot.pp

+ 1 - 1
tests/bench/shootout/src/mandelbrot.pp

@@ -20,7 +20,7 @@ procedure run;
 var
   Cy, Step: double;
   x, y, bits,bit: Longint;
-  function CalculatePoint(Cx, Cy: double): boolean; nostackframe; inline;
+  function CalculatePoint(Cx, Cy: double): boolean; inline;
   const
     Limit = 4;
   var