mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 19:58:20 +02:00

the flags are read afterwards (broke shldl/sub/sbb sequence generated for 64 bit "*2", which appears in bitpacked size calculation) git-svn-id: trunk@7336 -
10 lines
107 B
ObjectPascal
10 lines
107 B
ObjectPascal
type
|
|
tr = bitpacked record
|
|
l: longint;
|
|
end;
|
|
|
|
begin
|
|
if bitsizeof(tr) <> 32 then
|
|
halt(1);
|
|
end.
|