1
0
mirror of synced 2026-04-15 09:39:52 +00:00

Merge pull request #3918 from povik/print-sampling-fix

ast: Substitute rvalues when parsing out print arguments
This commit is contained in:
Martin Povišer
2023-09-11 17:08:04 +02:00
committed by GitHub

View File

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