3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-02-07 09:42:16 +00:00

Merge pull request #5621 from rocallahan/remove-opt-sort

Remove `Design::sort()` calls from optimization passes
This commit is contained in:
Emil J 2026-02-04 16:55:56 +01:00 committed by GitHub
commit 992e64342c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 5 additions and 3 deletions

View file

@ -193,7 +193,6 @@ struct OptPass : public Pass {
}
design->optimize();
design->sort();
design->check();
log_header(design, "Finished fast OPT passes.%s\n", fast_mode ? "" : " (There is nothing left to do.)");

View file

@ -713,7 +713,6 @@ struct OptCleanPass : public Pass {
log("Removed %d unused cells and %d unused wires.\n", count_rm_cells, count_rm_wires);
design->optimize();
design->sort();
design->check();
keep_cache.reset();
@ -778,7 +777,6 @@ struct CleanPass : public Pass {
log("Removed %d unused cells and %d unused wires.\n", count_rm_cells, count_rm_wires);
design->optimize();
design->sort();
design->check();
keep_cache.reset();