summaryrefslogtreecommitdiff
path: root/tests/test/tasm25es3.pp
blob: e9796979a00790ab4553e3593364c64517a42c0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ %CPU=x86_64 }
{ %OPT=-Sew }
{ %FAIL }

program tasm25es3;

{$asmmode att}

begin
  asm
    mov %es:5(%rdi), %rax
  end;
end.