3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-06 02:15:17 +00:00

Parallelize Design::check()

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

View file

@ -1760,9 +1760,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
};