summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/tasm1.pp
blob: 5b03d9765e771cd682db65c4b940ac15da0a7778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ %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.