mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 17:28:16 +02:00

* several fixes to liveness analysis * get rid of old version defines + tests git-svn-id: trunk@26159 -
18 lines
196 B
ObjectPascal
18 lines
196 B
ObjectPascal
{ %OPT=-Oodfa -Sew -vw}
|
|
{ %NORUN}
|
|
|
|
program tdfa1;
|
|
|
|
function f(i : longint) : longint;
|
|
begin
|
|
repeat
|
|
if i>1 then
|
|
exit(3);
|
|
if i<=1 then
|
|
exit(4);
|
|
until false;
|
|
end;
|
|
|
|
begin
|
|
end.
|