fpc/tests/webtbs/tw28702.pp
Jonas Maebe ed03286be5 * simplify "div -1" to unaryminusn, not just for performance reasons but
also because "div -1" is not handled correctly by the div-to-mul/shift
    transformation on x86 (mantis #28702)

git-svn-id: trunk@32619 -
2015-12-08 15:57:07 +00:00

9 lines
137 B
ObjectPascal

var
l: longint;
begin
l:=5;
{ dummy random to prevent constant propagation }
if ((l+random(1))div -1)<>-5 then
halt(1);
end.