mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-04 18:50:43 +01: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.
|