summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2016-12-27 10:52:02 +0100
committerAraq <rumpf_a@web.de>2016-12-29 14:08:20 +0100
commit7148f6f10487416d06f88b20ab2d87029d9fba2f (patch)
treee60e3a755a06b44fe3e05fff2ef1e2151b10b335
parent9c4a60193f00975c7f0669134253c62ce8e66203 (diff)
downloadNim-7148f6f10487416d06f88b20ab2d87029d9fba2f.tar.gz
make gendepend work again
-rw-r--r--compiler/main.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main.nim b/compiler/main.nim
index e3ff99870..f13375948 100644
--- a/compiler/main.nim
+++ b/compiler/main.nim
@@ -34,7 +34,7 @@ proc semanticPasses =
 proc commandGenDepend(graph: ModuleGraph; cache: IdentCache) =
   semanticPasses()
   registerPass(gendependPass)
-  registerPass(cleanupPass)
+  #registerPass(cleanupPass)
   compileProject(graph, cache)
   generateDot(gProjectFull)
   execExternalProgram("dot -Tpng -o" & changeFileExt(gProjectFull, "png") &