fpc/tests/test/tasm1.pp
sergei c28197bac3 * PSADBW second operand is xmmrm, not xmmreg
+ A couple of tests related to the recent assembler changes

git-svn-id: trunk@17460 -
2011-05-14 18:59:06 +00:00

13 lines
202 B
ObjectPascal

{ %CPU=i386,x86_64 }
{ %fail }
// ADDPS is an SSE-only instruction, it must not accept MMX registers
{$asmmode intel}
procedure test; assembler; nostackframe;
asm
addps mm0, mm1
end;
begin
end.