浏览代码

reverted unintended changes

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@7402 8c9fc860-2736-0410-a75d-ab315db34111
felixf 7 年之前
父节点
当前提交
dbe1d279ce
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      source/ActiveCellsRuntime.mod

+ 1 - 2
source/ActiveCellsRuntime.mod

@@ -7,7 +7,7 @@ import
 	system, Heaps, Modules, Diagnostics, Strings, Objects, Reflection, Commands;
 
 const
-	EnableTrace* = true;
+	EnableTrace* = false;
 
 type
 	(* do not inherit from this object -- not supported. This object contains hidden fields instantiated by the compiler that would be lost. *)
@@ -177,7 +177,6 @@ type
 
 	procedure AddPort*(c: Cell; var p: any; const name: array of char; inout: set; width: longint);
 	begin
-		trace(address of p);
 		if EnableTrace then trace(c,p,name, inout, width); end;
 		GetContext().AddPort(c.c, p, name, inout, width);
 	end AddPort;