mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 10:09:20 +02:00
* fix integer message dispatch on ppc64-darwin by temporarily setting the correct record alignment
git-svn-id: trunk@16271 -
This commit is contained in:
parent
b066395a2b
commit
0cb36ee173
@ -546,6 +546,8 @@
|
|||||||
procedure TObject.Dispatch(var message);
|
procedure TObject.Dispatch(var message);
|
||||||
|
|
||||||
type
|
type
|
||||||
|
{$PUSH}
|
||||||
|
{$PACKRECORDS NORMAL}
|
||||||
PMsgIntTable = ^TMsgIntTable;
|
PMsgIntTable = ^TMsgIntTable;
|
||||||
TMsgIntTable = record
|
TMsgIntTable = record
|
||||||
index : dword;
|
index : dword;
|
||||||
@ -557,7 +559,7 @@
|
|||||||
count : longint;
|
count : longint;
|
||||||
msgs : array[0..0] of TMsgIntTable;
|
msgs : array[0..0] of TMsgIntTable;
|
||||||
end;
|
end;
|
||||||
|
{$POP}
|
||||||
var
|
var
|
||||||
index : dword;
|
index : dword;
|
||||||
count,i : longint;
|
count,i : longint;
|
||||||
|
Loading…
Reference in New Issue
Block a user