mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 14:08:02 +02:00
18 lines
199 B
ObjectPascal
18 lines
199 B
ObjectPascal
{ %target=linux,openbsd,netbsd,freebsd }
|
|
{ %cpu=i386 }
|
|
{ %norun }
|
|
{$goto on }
|
|
label
|
|
l;
|
|
|
|
begin
|
|
asm
|
|
movl l@GOT(%eax),%eax
|
|
l:
|
|
end;
|
|
asm
|
|
movl .Ll@GOT(%eax),%eax
|
|
.Ll:
|
|
end;
|
|
end.
|