mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 13:10:17 +02:00
* TExceptAddr.frametype changed to SmallInt on 16-bit CPUs, since the compiler allocates 3*sizeof(pint) for the whole structure (and using longints on 16-bit CPUs is wasteful anyway)
git-svn-id: branches/i8086@24035 -
This commit is contained in:
parent
3b2ea4df6c
commit
252903175c
@ -30,7 +30,11 @@ Type
|
||||
TExceptAddr = record
|
||||
buf : pjmp_buf;
|
||||
next : PExceptAddr;
|
||||
{$ifdef CPU16}
|
||||
frametype : Smallint;
|
||||
{$else CPU16}
|
||||
frametype : Longint;
|
||||
{$endif CPU16}
|
||||
end;
|
||||
|
||||
Const
|
||||
|
Loading…
Reference in New Issue
Block a user