mirror of https://github.com/YosysHQ/yosys.git
Automatically run "proc" on extract map files
This commit is contained in:
parent
ad9bbcbf40
commit
88d0829d65
|
@ -521,6 +521,11 @@ struct ExtractPass : public Pass {
|
|||
map = new RTLIL::Design;
|
||||
Frontend::frontend_call(map, f, filename, (filename.size() > 3 && filename.substr(filename.size()-3) == ".il") ? "ilang" : "verilog");
|
||||
fclose(f);
|
||||
|
||||
if (filename.size() <= 3 || filename.substr(filename.size()-3) != ".il") {
|
||||
Pass::call(map, "proc");
|
||||
Pass::call(map, "opt_clean");
|
||||
}
|
||||
}
|
||||
|
||||
std::map<std::string, RTLIL::Module*> needle_map, haystack_map;
|
||||
|
|
Loading…
Reference in New Issue