mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 12:48:16 +02:00
13 lines
202 B
ObjectPascal
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.
|