summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2020-02-14 21:27:16 +0000
committerflorian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2>2020-02-14 21:27:16 +0000
commit96e0aa734b6c659b617209537048824d6e47ac51 (patch)
treea705f4650f486d6acbff0bd50e621ef9bb8eeb08
parente98eeb60a7e94d8a69b6f5e91320e3ee987b59bc (diff)
downloadfpc-96e0aa734b6c659b617209537048824d6e47ac51.tar.gz
* make maxpushedparasize a SizeInt: it must store an address size and not an alu value
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@44176 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/procinfo.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/procinfo.pas b/compiler/procinfo.pas
index 7279dd05c7..69a30077ae 100644
--- a/compiler/procinfo.pas
+++ b/compiler/procinfo.pas
@@ -125,7 +125,7 @@ unit procinfo;
aktlocaldata : TAsmList;
{ max. of space need for parameters }
- maxpushedparasize : aint;
+ maxpushedparasize : SizeInt;
{ some architectures need to know a stack size before the first compilation pass
estimatedtempsize contains an estimated value how big temps will get }