mirror of https://github.com/YosysHQ/yosys.git
Set "nosync" attribute on internal task/function wires
This commit is contained in:
parent
33c10350b2
commit
b6d08f39ba
|
|
@ -1889,6 +1889,7 @@ skip_dynamic_range_lvalue_expansion:;
|
||||||
wire->port_id = 0;
|
wire->port_id = 0;
|
||||||
wire->is_input = false;
|
wire->is_input = false;
|
||||||
wire->is_output = false;
|
wire->is_output = false;
|
||||||
|
wire->attributes["\\nosync"] = AstNode::mkconst_int(1, false);
|
||||||
wire_cache[child->str] = wire;
|
wire_cache[child->str] = wire;
|
||||||
|
|
||||||
current_ast_mod->children.push_back(wire);
|
current_ast_mod->children.push_back(wire);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue