3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

ast: Substitute rvalues when parsing out print arguments

Apply the local substitutions stemming from process context when parsing
out format arguments to `$display` or other statements.
This commit is contained in:
Martin Povišer 2023-09-05 21:40:24 +02:00
parent d4d951657f
commit 2d0fc040cf

View file

@ -759,7 +759,7 @@ struct AST_INTERNAL::ProcessGenerator
arg.realtime = true; arg.realtime = true;
} else { } else {
arg.type = VerilogFmtArg::INTEGER; arg.type = VerilogFmtArg::INTEGER;
arg.sig = node->genRTLIL(); arg.sig = node->genWidthRTLIL(-1, false, &subst_rvalue_map.stdmap());
arg.signed_ = is_signed; arg.signed_ = is_signed;
} }
args.push_back(arg); args.push_back(arg);