aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-03-19 08:48:39 -0700
committerEddie Hung <eddie@fpgeh.com>2020-03-19 08:48:39 -0700
commit43092f063f231482797fa9c240a4a5fe1223d55b (patch)
treee4913badfcdb1d3de301ad85f8cd614a95de5370 /frontends/ast
parente03f725ef27f696e316595999f3dc94ad5f6d946 (diff)
downloadyosys-43092f063f231482797fa9c240a4a5fe1223d55b.tar.gz
yosys-43092f063f231482797fa9c240a4a5fe1223d55b.tar.bz2
yosys-43092f063f231482797fa9c240a4a5fe1223d55b.zip
Fix NDEBUG warnings
Diffstat (limited to 'frontends/ast')
-rw-r--r--frontends/ast/simplify.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc
index 2fbadcdad..743c7e18f 100644
--- a/frontends/ast/simplify.cc
+++ b/frontends/ast/simplify.cc
@@ -432,7 +432,7 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage,
while (node->simplify(true, false, false, 1, -1, false, node->type == AST_PARAMETER || node->type == AST_LOCALPARAM))
did_something = true;
if (node->type == AST_ENUM) {
- for (auto enode : node->children){
+ for (auto enode YS_ATTRIBUTE(unused) : node->children){
log_assert(enode->type==AST_ENUM_ITEM);
while (node->simplify(true, false, false, 1, -1, false, in_param))
did_something = true;