mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-03 03:38:37 +02:00

* several fixes to liveness analysis * get rid of old version defines + tests git-svn-id: trunk@26159 -
17 lines
256 B
ObjectPascal
17 lines
256 B
ObjectPascal
{ %OPT=-Oodfa -Sew -vw }
|
|
{ %norun }
|
|
|
|
{ this test test needs dynamic dfa to work properly,
|
|
this is a reminder so it will not be forgotten }
|
|
var
|
|
j,i : longint;
|
|
|
|
begin
|
|
j:=paramcount;
|
|
if j=1 then
|
|
i:=1;
|
|
writeln;
|
|
if j=1 then
|
|
writeln(i);
|
|
end.
|