fpc/tests/test/tasm25fs1.pp
2018-03-13 14:41:21 +00:00

14 lines
128 B
ObjectPascal

{ %CPU=x86_64 }
{ %OPT=-Sew }
{ %NORUN }
program tasm25fs1;
{$asmmode att}
begin
asm
mov %fs:5(%rdi), %rax
end;
end.