mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
24 lines
282 B
ObjectPascal
24 lines
282 B
ObjectPascal
{ %skiptarget=android }
|
|
{ %cpu=i386 }
|
|
{ %OPT=-Cg- }
|
|
|
|
{$ifdef fpc}{$asmmode intel}{$endif}
|
|
|
|
Type
|
|
float=single;
|
|
var
|
|
f : float;
|
|
begin
|
|
f:=4.0;
|
|
asm
|
|
lea eax,f
|
|
fld SizeOf(float) ptr [eax]
|
|
fsqrt
|
|
fstp SizeOf(float) ptr [eax]
|
|
end;
|
|
writeln(f);
|
|
if trunc(f)<>2 then
|
|
halt(1);
|
|
end.
|
|
|