mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 12:32:25 +02:00
14 lines
146 B
ObjectPascal
14 lines
146 B
ObjectPascal
{ %cpu=i386 }
|
|
|
|
function A: pointer; assembler; nostackframe;
|
|
asm
|
|
pushl $A
|
|
popl %eax
|
|
end;
|
|
|
|
begin
|
|
if A <> pointer(@A) then
|
|
halt(1);
|
|
end.
|
|
|