diff options
-rw-r--r-- | compiler/main.nim | 2 |
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") & |