I was trying to translate my matrix asm library to FPC (64bit windows) and stumbled over the following error:
unrecognized opcode divpd
To show the problem I tried a simple (and not working

) program which
does not compile in Lazarus 1.2.0 to 1.2.4
{$ASMMODE Intel}
function TestDivp(d1, d2 : double) : double;
begin
asm
divdp xmm0, [r9 + rax - 128]; // unrecognized opcode
end;
end;
I already posted a similar question on Stackoverflow and got the hint that
the divpc opcode is actually recognized by FPC 2.6.2
Has anyone an idea?