mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Fix handling of src attributes in flatten
Signed-off-by: Clifford Wolf <[email protected]>
This commit is contained in:
@@ -171,18 +171,15 @@ struct TechmapWorker
|
||||
}
|
||||
|
||||
std::string orig_cell_name;
|
||||
pool<string> extra_src_attrs;
|
||||
pool<string> extra_src_attrs = cell->get_strpool_attribute("\\src");
|
||||
|
||||
if (!flatten_mode)
|
||||
{
|
||||
if (!flatten_mode) {
|
||||
for (auto &it : tpl->cells_)
|
||||
if (it.first == "\\_TECHMAP_REPLACE_") {
|
||||
orig_cell_name = cell->name.str();
|
||||
module->rename(cell, stringf("$techmap%d", autoidx++) + cell->name.str());
|
||||
break;
|
||||
}
|
||||
|
||||
extra_src_attrs = cell->get_strpool_attribute("\\src");
|
||||
}
|
||||
|
||||
dict<IdString, IdString> memory_renames;
|
||||
@@ -340,8 +337,6 @@ struct TechmapWorker
|
||||
RTLIL::Cell *c = module->addCell(c_name, it.second);
|
||||
design->select(module, c);
|
||||
|
||||
c->set_src_attribute(cell->get_src_attribute());
|
||||
|
||||
if (!flatten_mode && c->type.substr(0, 2) == "\\$")
|
||||
c->type = c->type.substr(1);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user