diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-03-31 11:51:12 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-03-31 11:51:12 +0200 |
commit | f1a2fd966f62df072d2c43573fb71a1369857523 (patch) | |
tree | a86a810fe0b12f862b3d4b721f5a3e198bd8247b /frontends/ast/ast.h | |
parent | 161565be104fd0c7b7c4224bd23e9502625e041a (diff) | |
download | yosys-f1a2fd966f62df072d2c43573fb71a1369857523.tar.gz yosys-f1a2fd966f62df072d2c43573fb71a1369857523.tar.bz2 yosys-f1a2fd966f62df072d2c43573fb71a1369857523.zip |
Now only use value from "initial" when no matching "always" block is found
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 918f12c1a..acf10f9ad 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -221,7 +221,7 @@ namespace AST_INTERNAL extern bool flag_dump_ast, flag_dump_ast_diff, flag_nolatches, flag_nomem2reg, flag_mem2reg, flag_lib; extern AST::AstNode *current_ast, *current_ast_mod; extern std::map<std::string, AST::AstNode*> current_scope; - extern RTLIL::SigSpec *genRTLIL_subst_from, *genRTLIL_subst_to; + extern RTLIL::SigSpec *genRTLIL_subst_from, *genRTLIL_subst_to, ignoreThisSignalsInInitial; extern AST::AstNode *current_top_block, *current_block, *current_block_child; extern AST::AstModule *current_module; struct ProcessGenerator; |