fpc/tests/webtbs/tw4902.pp
Jonas Maebe 1e3137c315 * load a dummy value on the fpu stack in the epilog of functions
which return a real but which never assigned anything to the function
    result (since the caller will pop it off again) (x86-only, bug #4902)

git-svn-id: trunk@3016 -
2006-03-22 21:32:48 +00:00

17 lines
248 B
ObjectPascal

{ Source provided for Free Pascal Bug Report 4902 }
{ Submitted by "Yu Hang" on 2006-03-14 }
{ e-mail: cosechy@gmail.com }
function x:real;
begin
end;
begin
x;
{anything here}
writeln(1);
writeln(2);
writeln(3);
{crash here}
writeln(1.0)
end.