fpc/tests/webtbs/tw29930.pp
Jonas Maebe 1e1b36515e * don't narrow expressions that contain a mod/div followed by an "and",
since the mod/div get a different result if calculated using fewer
    bits (mantis #29930)

git-svn-id: trunk@33413 -
2016-04-02 22:09:34 +00:00

20 lines
291 B
ObjectPascal

program and_problem;
{$mode objfpc}{$H+}
var
a : extended;
d : longint;
begin
a := -1;
d := (round(a*512) div 180) and 1023;
writeln(d);
if d<>1022 then
halt(1);
d := (round(a*512) div 180);
while (d<0) do d := d+1024;
writeln(d);
if d<>1022 then
halt(1);
end.