fpc/tests/test/tmul1.pp
florian 2f8027c63f + more sophisticated code to optimize multiplications on arm
+ the multiplication optimization needs a popcnt function
+ simple test

git-svn-id: trunk@22299 -
2012-09-03 13:39:45 +00:00

15 lines
149 B
ObjectPascal

var
i : longint;
begin
i:=5;
i:=i*10;
i:=i*62;
i:=i*-10;
i:=i*-62;
i:=i*87;
if i<>167214000 then
halt(1);
writeln('ok');
end.