aboutsummaryrefslogtreecommitdiff
path: root/gcc/m2/gm2-libs/M2Dependent.mod
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/m2/gm2-libs/M2Dependent.mod')
-rw-r--r--gcc/m2/gm2-libs/M2Dependent.mod21
1 files changed, 16 insertions, 5 deletions
diff --git a/gcc/m2/gm2-libs/M2Dependent.mod b/gcc/m2/gm2-libs/M2Dependent.mod
index 911113fc00b..19bdab1bc50 100644
--- a/gcc/m2/gm2-libs/M2Dependent.mod
+++ b/gcc/m2/gm2-libs/M2Dependent.mod
@@ -75,6 +75,21 @@ VAR
(*
+ InitDependencyList - initialize all fields of DependencyList.
+*)
+
+PROCEDURE InitDependencyList (VAR depList: DependencyList;
+ proc: PROC; state: DependencyState) ;
+BEGIN
+ depList.proc := proc ;
+ depList.forced := FALSE ;
+ depList.forc := FALSE ;
+ depList.appl := FALSE ;
+ depList.state := state
+END InitDependencyList ;
+
+
+(*
CreateModule - creates a new module entry and returns the
ModuleChain.
*)
@@ -90,11 +105,7 @@ BEGIN
mptr^.libname := libname ;
mptr^.init := init ;
mptr^.fini := fini ;
- mptr^.dependency.proc := dependencies ;
- mptr^.dependency.forced := FALSE ;
- mptr^.dependency.forc := FALSE ;
- mptr^.dependency.appl := FALSE ;
- mptr^.dependency.state := unregistered ;
+ InitDependencyList (mptr^.dependency, dependencies, unregistered) ;
mptr^.prev := NIL ;
mptr^.next := NIL ;
IF HexTrace