fpc/tests/test/tprec14.pp
Jonas Maebe 20206500aa * don't change a sequence of shifts and sub/adds into a lea() in case
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 -
2007-05-14 20:37:42 +00:00

10 lines
107 B
ObjectPascal

type
tr = bitpacked record
l: longint;
end;
begin
if bitsizeof(tr) <> 32 then
halt(1);
end.