summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/tasm4.pp
blob: de01d4bf9d51247b58e77346fd0724305bf6de0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ %CPU=x86_64 }
{ %fail }

// AH/BH/CH/DH and x86_64 specific registers cannot be used in a single instruction
{$asmmode att}
procedure test; assembler; nostackframe;
asm
     adcb  %ah, (%r8)
end;

begin
end.