mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 19:29:24 +02:00

* several fixes to liveness analysis * get rid of old version defines + tests git-svn-id: trunk@26159 -
14 lines
159 B
ObjectPascal
14 lines
159 B
ObjectPascal
{ %OPT=-Oodfa -Sew -vw -S2 }
|
|
{ %fail }
|
|
{ %norun }
|
|
var
|
|
j,
|
|
i : longint;
|
|
begin
|
|
j:=paramcount;
|
|
if (j=1) or (i=0) then
|
|
halt(1)
|
|
else
|
|
halt(0);
|
|
end.
|