3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-02 19:56:57 +00:00

Parallelize Design::check()

This commit is contained in:
Robert O'Callahan 2026-01-29 22:45:10 +00:00
parent 704d110560
commit 6bf9fd3e1f
2 changed files with 104 additions and 83 deletions

View file

@ -1759,9 +1759,9 @@ public:
}
#ifndef NDEBUG
void check(Module *mod = nullptr) const;
void check(const Module *mod = nullptr) const;
#else
void check(Module *mod = nullptr) const { (void)mod; }
void check(const Module *mod = nullptr) const { (void)mod; }
#endif
};