fpc/tests/webtbs/tw39971.pp
florian 3fa77a4f62 * fix life information propagation for while loops, resolves #39971
* warnings/errors fixed which are caused by the new life information propagation
  + test
2022-10-24 22:13:43 +02:00

20 lines
318 B
ObjectPascal

{ %opt=-O4 -Oodeadstore -S2 }
function FileSizeFractionalPart(sz: uint64): uint32;
var
fr: uint32;
begin
fr := 0;
while sz > 1000 do
begin
fr := sz mod 1024;
sz := sz div 1024;
end;
result := fr;
end;
begin
writeln(FileSizeFractionalPart(12));
if FileSizeFractionalPart(12)<>0 then
halt(1);
end.