aboutsummaryrefslogtreecommitdiff
path: root/gcc/m2/gm2-compiler/M2SSA.def
blob: b4a85590f52eb02dbec6b117d53d40749b28d62d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
DEFINITION MODULE M2SSA ;

(*
    Title      : M2SSA
    Author     : Gaius Mulley
    System     : GNU Modula-2
    Date       : Mon May 10 17:04:19 2021
    Revision   : $Version$
    Description:
*)

EXPORT QUALIFIED DiscoverSSA, EnableSSA ;


CONST
   EnableSSA = FALSE ;


(*
   DiscoverSSA - perform a very simple check to determine whether a
                 temporary is a single use write.
*)

PROCEDURE DiscoverSSA (scope: CARDINAL) ;


END M2SSA.