diff options
Diffstat (limited to 'frontends')
-rw-r--r-- | frontends/ast/ast.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc index bf7d0c38c..115a39333 100644 --- a/frontends/ast/ast.cc +++ b/frontends/ast/ast.cc @@ -856,6 +856,7 @@ RTLIL::IdString AstModule::derive(RTLIL::Design *design, std::map<RTLIL::IdStrin if (design->modules.count(modname) == 0) { new_ast->str = modname; design->modules[modname] = process_module(new_ast); + design->modules[modname]->check(); } else { log("Found cached RTLIL representation for module `%s'.\n", modname.c_str()); } |