Fix param without default log line

This commit is contained in:
Zachary Snow 2021-03-07 16:06:25 -05:00
parent 9cdc6b5f2e
commit bdc4fd0e92
1 changed files with 1 additions and 1 deletions

View File

@ -1248,7 +1248,7 @@ void AST::process(RTLIL::Design *design, AstNode *ast, bool dump_ast1, bool dump
for (const AstNode *node : (*it)->children)
if (node->type == AST_PARAMETER && param_has_no_default(node))
{
log("Deferring `%s' because it contains parameter(s) without defaults.\n", ast->str.c_str());
log("Deferring `%s' because it contains parameter(s) without defaults.\n", (*it)->str.c_str());
defer_local = true;
break;
}