* 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:
nickysn 2013-03-28 15:34:38 +00:00
parent 3b2ea4df6c
commit 252903175c

View File

@ -30,7 +30,11 @@ Type
TExceptAddr = record
buf : pjmp_buf;
next : PExceptAddr;
{$ifdef CPU16}
frametype : Smallint;
{$else CPU16}
frametype : Longint;
{$endif CPU16}
end;
Const