mirror of https://github.com/YosysHQ/yosys.git
Do not set "nosync" on task outputs, fixes #134
This commit is contained in:
parent
9717495401
commit
5328a85149
|
@ -1913,7 +1913,8 @@ skip_dynamic_range_lvalue_expansion:;
|
|||
wire->port_id = 0;
|
||||
wire->is_input = false;
|
||||
wire->is_output = false;
|
||||
wire->attributes["\\nosync"] = AstNode::mkconst_int(1, false);
|
||||
if (!child->is_output)
|
||||
wire->attributes["\\nosync"] = AstNode::mkconst_int(1, false);
|
||||
wire_cache[child->str] = wire;
|
||||
|
||||
current_ast_mod->children.push_back(wire);
|
||||
|
|
Loading…
Reference in New Issue