diff options
author | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-01-22 10:45:21 +0100 |
---|---|---|
committer | Ahmed Irfan <irfan@ubuntu.(none)> | 2014-01-22 10:45:21 +0100 |
commit | 9d07d83c5a3b6a69a992a442fa88ba6114fade45 (patch) | |
tree | 8d0f9a805fe7c39e55f1613420e4dbbb4e7063b5 /frontends/ast/ast.h | |
parent | aa3cb20e1ecb268ea2a663916518c311ceb60808 (diff) | |
parent | 88fbdd4916a9a9f491d22075b63beb676153c3d3 (diff) | |
download | yosys-9d07d83c5a3b6a69a992a442fa88ba6114fade45.tar.gz yosys-9d07d83c5a3b6a69a992a442fa88ba6114fade45.tar.bz2 yosys-9d07d83c5a3b6a69a992a442fa88ba6114fade45.zip |
Merge branch 'master' of https://github.com/cliffordwolf/yosys into btor
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 6aaa90e86..14e7803bf 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -153,6 +153,9 @@ namespace AST // this is set by simplify and used during RTLIL generation AstNode *id2ast; + // this is used by simplify to detect if basic analysis has been performed already on the node + bool basic_prep; + // this is the original sourcecode location that resulted in this AST node // it is automatically set by the constructor using AST::current_filename and // the AST::get_line_num() callback function. |