mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-21 20:38:19 +02:00
Avoid null array size field for aarch64-linux TUContext
This commit is contained in:
parent
b16ce8806b
commit
cdfe3aa1eb
@ -57,7 +57,9 @@ type
|
|||||||
uc_link : PUContext;
|
uc_link : PUContext;
|
||||||
uc_stack : stack_t;
|
uc_stack : stack_t;
|
||||||
uc_sigmask : sigset_t;
|
uc_sigmask : sigset_t;
|
||||||
|
{$if sizeof(sigset_t) < 128 }
|
||||||
__padding : array[1..128 - sizeof(sigset_t)] of byte;
|
__padding : array[1..128 - sizeof(sigset_t)] of byte;
|
||||||
|
{$endif}
|
||||||
__pad : cULong;
|
__pad : cULong;
|
||||||
{ The following field should be 16-byte-aligned. Currently the
|
{ The following field should be 16-byte-aligned. Currently the
|
||||||
directive for specifying alignment is buggy, so the preceding
|
directive for specifying alignment is buggy, so the preceding
|
||||||
|
Loading…
Reference in New Issue
Block a user