diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-05-16 16:44:06 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-05-16 16:44:06 +0200 |
commit | 6cc8e848b6f222f2e853c4b86c41148f2b8ea0d5 (patch) | |
tree | bd893f0540bc83f2e8ec883673739a910d686cec /frontends | |
parent | 227520f94d5fe0eb983889b61ed9b72640f1b4f4 (diff) | |
download | yosys-6cc8e848b6f222f2e853c4b86c41148f2b8ea0d5.tar.gz yosys-6cc8e848b6f222f2e853c4b86c41148f2b8ea0d5.tar.bz2 yosys-6cc8e848b6f222f2e853c4b86c41148f2b8ea0d5.zip |
Fixed synthesis of functions in latched blocks
Diffstat (limited to 'frontends')
-rw-r--r-- | frontends/ast/simplify.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc index ef06c5b03..887b62f2c 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -685,8 +685,6 @@ skip_dynamic_range_lvalue_expansion:; wire->port_id = 0; wire->is_input = false; wire->is_output = false; - if (type == AST_FCALL) - wire->attributes["\\nosync"] = AstNode::mkconst_int(0, false, 0); current_ast_mod->children.push_back(wire); replace_rules[child->str] = wire->str; |