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/ast.h | |
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/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 039b929f7..504ec5f2d 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -137,6 +137,7 @@ namespace AST // the list of attributes assigned to this node std::map<RTLIL::IdString, AstNode*> attributes; + bool get_bool_attribute(RTLIL::IdString id); // node content - most of it is unused in most node types std::string str; |