blob: b4a85590f52eb02dbec6b117d53d40749b28d62d [file] [log] [blame]
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.