mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-30 07:53:16 +00:00
Remove YS_ATTRIBUTE(unused) where present just for log_assert()/log_debug().
This commit is contained in:
parent
21692c4a2e
commit
118e4caa37
9 changed files with 26 additions and 26 deletions
|
@ -132,7 +132,7 @@ static void test_abcloop()
|
|||
SatGen satgen(ez.get(), &sigmap);
|
||||
|
||||
for (auto c : module->cells()) {
|
||||
bool ok YS_ATTRIBUTE(unused) = satgen.importCell(c);
|
||||
bool ok = satgen.importCell(c);
|
||||
log_assert(ok);
|
||||
}
|
||||
|
||||
|
@ -182,7 +182,7 @@ static void test_abcloop()
|
|||
SatGen satgen(ez.get(), &sigmap);
|
||||
|
||||
for (auto c : module->cells()) {
|
||||
bool ok YS_ATTRIBUTE(unused) = satgen.importCell(c);
|
||||
bool ok = satgen.importCell(c);
|
||||
log_assert(ok);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue