diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-01-24 12:16:46 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-01-24 12:16:46 +0100 |
commit | 2a9ad48eb63a5f019c528fe46ceca0065364a44d (patch) | |
tree | a84eec02de3e555ca502d9fc4cdc2d9ca66b203c /passes/tests | |
parent | 8fe9ab50e51204e5709eaad0fbf2ffb5397a0194 (diff) | |
download | yosys-2a9ad48eb63a5f019c528fe46ceca0065364a44d.tar.gz yosys-2a9ad48eb63a5f019c528fe46ceca0065364a44d.tar.bz2 yosys-2a9ad48eb63a5f019c528fe46ceca0065364a44d.zip |
Added ENABLE_NDEBUG makefile options
Diffstat (limited to 'passes/tests')
-rw-r--r-- | passes/tests/test_abcloop.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/tests/test_abcloop.cc b/passes/tests/test_abcloop.cc index 853339b95..753fa7bf2 100644 --- a/passes/tests/test_abcloop.cc +++ b/passes/tests/test_abcloop.cc @@ -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); } |