fpc/tests/webtbs/tw37400.pp
2020-07-22 20:47:12 +00:00

13 lines
177 B
ObjectPascal

{ %cpu=i386,x86_64 }
{ %opt=-Cpcoreavx2 }
function popc ( a, b: byte):byte;
var z,v: byte;
begin
z:=a+b;
v:=popcnt(z); //-- this line
popc:=v;
end;
begin
end.