gowin: Himbaechel. Use a more appropriate function

Signed-off-by: YRabbit <rabbit@yrabbit.cyou>
This commit is contained in:
YRabbit 2023-09-07 19:04:42 +10:00 committed by myrtle
parent 78ee20b5da
commit 890d7f7617

View File

@ -1347,9 +1347,7 @@ struct GowinPacker
ctx->createCell(buf_name, id_BUFG);
CellInfo *buf_ci = ctx->cells.at(buf_name).get();
buf_ci->addInput(id_I);
auto s_net = std::make_unique<NetInfo>(ctx->idf("$PACKER_BUF_%s", net.first.c_str(ctx)));
NetInfo *buf_ni = s_net.get();
ctx->nets[s_net->name] = std::move(s_net);
NetInfo *buf_ni = ctx->createNet(ctx->idf("$PACKER_BUF_%s", net.first.c_str(ctx)));
if (ctx->verbose) {
log_info("Create buf '%s' with IN net '%s'\n", buf_name.c_str(ctx), buf_ni->name.c_str(ctx));