fpc/tests/test/opt/tdfa11.pp
florian 99eadb91b3 * run CheckAndWarn to get proper locations for warnings about uninitialized variables
* several fixes to liveness analysis
* get rid of old version defines
+ tests

git-svn-id: trunk@26159 -
2013-12-01 17:01:51 +00:00

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.