mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
26 lines
389 B
ObjectPascal
26 lines
389 B
ObjectPascal
{ %skiptarget=android }
|
|
{ %cpu=i386 }
|
|
{ %OPT=-Cg- }
|
|
|
|
{ Source provided for Free Pascal Bug Report 3093 }
|
|
{ Submitted by "Dail Singleton" on 2004-05-08 }
|
|
{ e-mail: fdails@hal-pc.org }
|
|
{$asmmode intel}
|
|
var
|
|
d1,d2,d3 : double;
|
|
begin
|
|
d1:=1;
|
|
d2:=2;
|
|
asm
|
|
fld d1
|
|
fld d2
|
|
fdivr st(1),st
|
|
fst d3
|
|
end;
|
|
if d3<>2 then
|
|
begin
|
|
writeln(d3);
|
|
halt(1);
|
|
end;
|
|
end.
|