3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-17 04:35:44 +00:00

rtlil: evacuate src_id_ from AttrObject to per-Design meta vector

This commit is contained in:
Emil J. Tywoniak 2026-06-05 14:15:51 +02:00
parent e70eed3296
commit f1edb571f2
22 changed files with 668 additions and 390 deletions

View file

@ -105,9 +105,9 @@ namespace {
pool.dump("twine pool state");
}
for (Cell* c : targets)
c->set_src_id(&pool, merged);
c->set_src_id(merged);
if (merge_src_into)
merge_src_into->set_src_id(&pool, merged);
merge_src_into->set_src_id(merged);
pool.release(merged);
}