mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:47:50 +02:00
14 lines
244 B
ObjectPascal
14 lines
244 B
ObjectPascal
{ %cpu=i386 }
|
|
|
|
{ Source provided for Free Pascal Bug Report 3444 }
|
|
{ Submitted by "Arnstein" on 2004-12-09 }
|
|
{ e-mail: Arnstein.Prytz@jcu.edu.au }
|
|
{$asmmode intel}
|
|
program tmp;
|
|
begin
|
|
asm
|
|
fstp st(1 );
|
|
{------------^ NB space}
|
|
end;
|
|
end.
|