]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/m2/gm2-compiler/M2SSA.def
Update copyright years.
[thirdparty/gcc.git] / gcc / m2 / gm2-compiler / M2SSA.def
CommitLineData
1eee94d3
GM
1DEFINITION MODULE M2SSA ;
2
3(*
4 Title : M2SSA
5 Author : Gaius Mulley
6 System : GNU Modula-2
7 Date : Mon May 10 17:04:19 2021
8 Revision : $Version$
9 Description:
10*)
11
12EXPORT QUALIFIED DiscoverSSA, EnableSSA ;
13
14
15CONST
16 EnableSSA = FALSE ;
17
18
19(*
20 DiscoverSSA - perform a very simple check to determine whether a
21 temporary is a single use write.
22*)
23
24PROCEDURE DiscoverSSA (scope: CARDINAL) ;
25
26
27END M2SSA.