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 -
17 lines
151 B
ObjectPascal
17 lines
151 B
ObjectPascal
{ %OPT=-Oodfa -Sew -vw }
|
|
{ %norun }
|
|
unit tdfa9;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
var
|
|
i : longint;
|
|
|
|
initialization
|
|
i:=1;
|
|
finalization
|
|
writeln(i);
|
|
end.
|