diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-10-24 11:20:13 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-10-24 11:20:13 +0200 |
commit | 23cf23418cd28b98c11a1ed3fb45dbb927f48e65 (patch) | |
tree | 27042b15ed64cb2a438c97b4eaeb23a681cffa0d /frontends/ast/genrtlil.cc | |
parent | eae43e2db430c951018b5cb70f047de84ad010b0 (diff) | |
download | yosys-23cf23418cd28b98c11a1ed3fb45dbb927f48e65.tar.gz yosys-23cf23418cd28b98c11a1ed3fb45dbb927f48e65.tar.bz2 yosys-23cf23418cd28b98c11a1ed3fb45dbb927f48e65.zip |
Fixed handling of boolean attributes (frontends)
Diffstat (limited to 'frontends/ast/genrtlil.cc')
-rw-r--r-- | frontends/ast/genrtlil.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc index 6ea07652b..8b122a7a5 100644 --- a/frontends/ast/genrtlil.cc +++ b/frontends/ast/genrtlil.cc @@ -260,7 +260,7 @@ struct AST_INTERNAL::ProcessGenerator } // create initial assignments for the temporary signals - if ((flag_nolatches || always->attributes.count("\\nolatches") > 0 || current_module->attributes.count("\\nolatches")) && !found_clocked_sync) { + if ((flag_nolatches || always->get_bool_attribute("\\nolatches") || current_module->get_bool_attribute("\\nolatches")) && !found_clocked_sync) { subst_rvalue_from = subst_lvalue_from; subst_rvalue_to = RTLIL::SigSpec(RTLIL::State::Sx, subst_rvalue_from.width); } else { @@ -366,7 +366,7 @@ struct AST_INTERNAL::ProcessGenerator for (size_t i = 0; i < lvalue.chunks.size(); i++) { RTLIL::SigSpec lhs = lvalue.chunks[i]; RTLIL::SigSpec rhs = rvalue.extract(offset, lvalue.chunks[i].width); - if (inSyncRule && lvalue.chunks[i].wire && lvalue.chunks[i].wire->attributes.count("\\nosync")) + if (inSyncRule && lvalue.chunks[i].wire && lvalue.chunks[i].wire->get_bool_attribute("\\nosync")) rhs = RTLIL::SigSpec(RTLIL::State::Sx, rhs.width); actions.push_back(RTLIL::SigSig(lhs, rhs)); offset += lhs.width; @@ -468,7 +468,7 @@ struct AST_INTERNAL::ProcessGenerator current_case = backup_case; } - if (last_generated_case != NULL && ast->attributes.count("\\full_case") > 0) { + if (last_generated_case != NULL && ast->get_bool_attribute("\\full_case")) { last_generated_case->compare.clear(); } else if (!generated_default_case) { RTLIL::CaseRule *default_case = new RTLIL::CaseRule; |