diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-03-08 16:24:35 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-03-08 16:24:35 +0100 |
commit | 3545c0fffb6c95b6db8d5beed4a6355e1d665b5f (patch) | |
tree | 8d01ceb8a3d8f6a2798d7793163d0e90c4adc409 /backends | |
parent | a15208f3012a20ad493850a7072fa501b917a67f (diff) | |
download | yosys-3545c0fffb6c95b6db8d5beed4a6355e1d665b5f.tar.gz yosys-3545c0fffb6c95b6db8d5beed4a6355e1d665b5f.tar.bz2 yosys-3545c0fffb6c95b6db8d5beed4a6355e1d665b5f.zip |
Remove debug prints from yosys-smtbmc VCD writer
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'backends')
-rw-r--r-- | backends/smt2/smtio.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/backends/smt2/smtio.py b/backends/smt2/smtio.py index fed4524ce..1d5c89d8e 100644 --- a/backends/smt2/smtio.py +++ b/backends/smt2/smtio.py @@ -984,12 +984,10 @@ class MkVcd: while uipath[:len(scope)] != scope[:-1]: print("$upscope $end", file=self.f) scope = scope[:-1] - print(scope, file=self.f) while uipath[:-1] != scope: print("$scope module %s $end" % uipath[len(scope)], file=self.f) scope.append(uipath[len(scope)]) - print(scope, file=self.f) if path in self.clocks and self.clocks[path][1] == "event": print("$var event 1 %s %s $end" % (key, uipath[-1]), file=self.f) |