diff options
author | whitequark <whitequark@whitequark.org> | 2020-06-19 01:32:48 +0000 |
---|---|---|
committer | whitequark <whitequark@whitequark.org> | 2020-06-19 15:48:58 +0000 |
commit | 118e4caa37aa437974d9ec2ac65a4c6048cf6291 (patch) | |
tree | bbac3bc60c6c5c7fbe417292eebd9819afb9c72a /passes/tests/test_abcloop.cc | |
parent | 21692c4a2e0e70d6e0d09dd0b3c93ff70f1f236e (diff) | |
download | yosys-118e4caa37aa437974d9ec2ac65a4c6048cf6291.tar.gz yosys-118e4caa37aa437974d9ec2ac65a4c6048cf6291.tar.bz2 yosys-118e4caa37aa437974d9ec2ac65a4c6048cf6291.zip |
Remove YS_ATTRIBUTE(unused) where present just for log_assert()/log_debug().
Diffstat (limited to 'passes/tests/test_abcloop.cc')
-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 a7d51293d..2d80e66e4 100644 --- a/passes/tests/test_abcloop.cc +++ b/passes/tests/test_abcloop.cc @@ -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); } |