3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-24 13:18:56 +00:00

Added ENABLE_NDEBUG makefile options

This commit is contained in:
Clifford Wolf 2015-01-24 12:16:46 +01:00
parent 8fe9ab50e5
commit 2a9ad48eb6
12 changed files with 33 additions and 12 deletions

View file

@ -132,7 +132,7 @@ static void test_abcloop()
SatGen satgen(&ez, &sigmap);
for (auto c : module->cells()) {
bool ok = satgen.importCell(c);
bool ok YS_ATTRIBUTE(unused) = satgen.importCell(c);
log_assert(ok);
}
@ -182,7 +182,7 @@ static void test_abcloop()
SatGen satgen(&ez, &sigmap);
for (auto c : module->cells()) {
bool ok = satgen.importCell(c);
bool ok YS_ATTRIBUTE(unused) = satgen.importCell(c);
log_assert(ok);
}