mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-18 19:11:36 +01:00
* several fixes to liveness analysis * get rid of old version defines + tests git-svn-id: trunk@26159 -
19 lines
268 B
ObjectPascal
19 lines
268 B
ObjectPascal
{ %OPT=-Oodfa -Sew -vw }
|
|
{ %fail }
|
|
{ %norun }
|
|
unit tdfa8;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
{ this test will work only as soon as we have global dfa,
|
|
so this will not be forgotten to be handled properly }
|
|
var
|
|
i : longint;
|
|
|
|
initialization
|
|
finalization
|
|
writeln(i);
|
|
end.
|