diff options
author | Benedikt Tutzer <benedikt.tutzer@gmail.com> | 2019-10-15 10:13:21 +0200 |
---|---|---|
committer | Benedikt Tutzer <benedikt.tutzer@gmail.com> | 2019-10-15 10:13:21 +0200 |
commit | f8f572fbfc4e5de3afa7dc05f5fa1feff87aabd3 (patch) | |
tree | daca10f9ee8149bc7ee13eb9cf89702886275947 /frontends/ast/ast.h | |
parent | 79be986e2248540854c3e8e1e21f5bf971079690 (diff) | |
parent | 2daa56859f51631992cc172ccddad55e741b0c3d (diff) | |
download | yosys-f8f572fbfc4e5de3afa7dc05f5fa1feff87aabd3.tar.gz yosys-f8f572fbfc4e5de3afa7dc05f5fa1feff87aabd3.tar.bz2 yosys-f8f572fbfc4e5de3afa7dc05f5fa1feff87aabd3.zip |
Merge branch 'master' of https://github.com/YosysHQ/yosys into feature/python_wrappers/globals_and_streams
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 0ec249ab9..918d178c7 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -148,7 +148,10 @@ namespace AST AST_INTERFACEPORTTYPE, AST_MODPORT, AST_MODPORTMEMBER, - AST_PACKAGE + AST_PACKAGE, + + AST_WIRETYPE, + AST_TYPEDEF }; // convert an node type to a string (e.g. for debug output) @@ -174,7 +177,7 @@ namespace AST // node content - most of it is unused in most node types std::string str; std::vector<RTLIL::State> bits; - bool is_input, is_output, is_reg, is_logic, is_signed, is_string, is_wand, is_wor, range_valid, range_swapped, was_checked, is_unsized; + bool is_input, is_output, is_reg, is_logic, is_signed, is_string, is_wand, is_wor, range_valid, range_swapped, was_checked, is_unsized, is_custom_type; int port_id, range_left, range_right; uint32_t integer; double realvalue; |