mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
14 lines
139 B
ObjectPascal
14 lines
139 B
ObjectPascal
{ %fail }
|
|
{ %cpu=i386 }
|
|
{ %opt=-Cg- }
|
|
|
|
var
|
|
a: longint;
|
|
begin
|
|
{$asmmode att}
|
|
asm
|
|
.LPIC:
|
|
movl a-.LPIC-.LPIC(%ecx),%eax
|
|
end;
|
|
end.
|