diff options
| author | Clifford Wolf <clifford@clifford.at> | 2016-03-18 10:53:29 +0100 | 
|---|---|---|
| committer | Clifford Wolf <clifford@clifford.at> | 2016-03-18 10:53:29 +0100 | 
| commit | b6d08f39baf508951ef36bedbd583f2b9fb48d1b (patch) | |
| tree | f0f079de4a90058a6ee6a262f2ee6725d105febf /frontends/ast | |
| parent | 33c10350b22a8cc943cf3c294ee86969c5ce97f4 (diff) | |
| download | yosys-b6d08f39baf508951ef36bedbd583f2b9fb48d1b.tar.gz yosys-b6d08f39baf508951ef36bedbd583f2b9fb48d1b.tar.bz2 yosys-b6d08f39baf508951ef36bedbd583f2b9fb48d1b.zip  | |
Set "nosync" attribute on internal task/function wires
Diffstat (limited to 'frontends/ast')
| -rw-r--r-- | frontends/ast/simplify.cc | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc index 2621be490..5a9a8b997 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -1889,6 +1889,7 @@ 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);  					wire_cache[child->str] = wire;  					current_ast_mod->children.push_back(wire);  | 
