diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-05-05 07:59:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 07:59:40 -0700 |
commit | 283b1130a651324ff870059dc3b1cf869948db93 (patch) | |
tree | 39d4d1b903791a5372df7c06bf771b64df8d2a8d /frontends/ast/genrtlil.cc | |
parent | ae409d4d81f3a15aba58d5144e68b565cf70b79a (diff) | |
parent | 22bf22fab4f5388f8279466be1da21f5a4daeae2 (diff) | |
download | yosys-283b1130a651324ff870059dc3b1cf869948db93.tar.gz yosys-283b1130a651324ff870059dc3b1cf869948db93.tar.bz2 yosys-283b1130a651324ff870059dc3b1cf869948db93.zip |
Merge pull request #2025 from YosysHQ/eddie/frontend_cleanup
frontend: cleanup to use more ID::*, more dict<> instead of map<>
Diffstat (limited to 'frontends/ast/genrtlil.cc')
-rw-r--r-- | frontends/ast/genrtlil.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc index 5894c7b3c..996762715 100644 --- a/frontends/ast/genrtlil.cc +++ b/frontends/ast/genrtlil.cc @@ -171,7 +171,7 @@ struct AST_INTERNAL::LookaheadRewriter for (auto c : node->id2ast->children) wire->children.push_back(c->clone()); wire->str = stringf("$lookahead%s$%d", node->str.c_str(), autoidx++); - wire->attributes["\\nosync"] = AstNode::mkconst_int(1, false); + wire->attributes[ID::nosync] = AstNode::mkconst_int(1, false); wire->is_logic = true; while (wire->simplify(true, false, false, 1, -1, false, false)) { } current_ast_mod->children.push_back(wire); |