mirror of https://github.com/YosysHQ/yosys.git
techmap: disable signorm more
This commit is contained in:
parent
04311e3e53
commit
e7a97360a8
|
|
@ -150,6 +150,7 @@ struct TechmapWorker
|
|||
log("\n");
|
||||
if (autoproc_mode) {
|
||||
Pass::call_on_module(tpl->design, tpl, "proc");
|
||||
tpl->design->sigNormalize(false);
|
||||
log_assert(GetSize(tpl->processes) == 0);
|
||||
} else
|
||||
log_error("Technology map yielded processes -> this is not supported (use -autoproc to run 'proc' automatically).\n");
|
||||
|
|
@ -565,6 +566,7 @@ struct TechmapWorker
|
|||
log("Running \"%s\" on wrapper %s.\n", cmd_string, log_id(extmapper_module));
|
||||
mkdebug.on();
|
||||
Pass::call_on_module(extmapper_design, extmapper_module, cmd_string);
|
||||
extmapper_design->sigNormalize(false);
|
||||
log_continue = true;
|
||||
}
|
||||
}
|
||||
|
|
@ -864,6 +866,7 @@ struct TechmapWorker
|
|||
}
|
||||
|
||||
Pass::call_on_module(map, tpl, cmd_string);
|
||||
map->sigNormalize(false);
|
||||
|
||||
log_assert(!strncmp(q, "_TECHMAP_DO_", 12));
|
||||
std::string new_name = data.wire->name.substr(0, q-p) + "_TECHMAP_DONE_" + data.wire->name.substr(q-p+12);
|
||||
|
|
|
|||
Loading…
Reference in New Issue