Browse Source

Enforce import of Runtime in Heaps (import order + shortened linking command)

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7346 8c9fc860-2736-0410-a75d-ab315db34111
felixf 7 years ago
parent
commit
535b36d48a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      source/Heaps.Mod

+ 1 - 1
source/Heaps.Mod

@@ -10,7 +10,7 @@ MODULE Heaps;	(** AUTHOR "pjm/Luc Bläser/U. Glavitsch (ug)"; PURPOSE "Heap mana
 		Knuth, The Art of Computer Programming, Volume 1, Section 2.3.5, Algorithm C
 		Knuth, The Art of Computer Programming, Volume 1, Section 2.3.5, Algorithm C
 *)
 *)
 
 
-IMPORT SYSTEM, Trace, Machine;
+IMPORT Runtime (* enforce import order *), SYSTEM, Trace, Machine;
 
 
 CONST
 CONST
 	Paranoid = TRUE; (* if paranoid =true, then during mark phase the GC can accept spurious pointers but reports them
 	Paranoid = TRUE; (* if paranoid =true, then during mark phase the GC can accept spurious pointers but reports them