diff options
Diffstat (limited to 'compiler/passes.nim')
-rw-r--r-- | compiler/passes.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/passes.nim b/compiler/passes.nim index e3885540e..11799b122 100644 --- a/compiler/passes.nim +++ b/compiler/passes.nim @@ -108,7 +108,8 @@ proc prepareConfigNotes(graph: ModuleGraph; module: PSym) = graph.config.notes = graph.config.foreignPackageNotes proc moduleHasChanged*(graph: ModuleGraph; module: PSym): bool {.inline.} = - result = module.id >= 0 or isDefined(graph.config, "nimBackendAssumesChange") + result = true + #module.id >= 0 or isDefined(graph.config, "nimBackendAssumesChange") proc partOfStdlib(x: PSym): bool = var it = x.owner |