diff options
author | clairexen <claire@symbioticeda.com> | 2020-06-04 18:26:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 18:26:07 +0200 |
commit | 352731df4e0bf344cd20533a5561bc8ba3e07853 (patch) | |
tree | 12c29d3b7b87037b1b0e3a768b764801b7e34d9f /frontends/ast/ast.cc | |
parent | ba99c0ea8140131a95ed3d5467c5b2c93d16552e (diff) | |
parent | 0d3f7ea011288e1a1fadd4ae27f1e8a57d729053 (diff) | |
download | yosys-352731df4e0bf344cd20533a5561bc8ba3e07853.tar.gz yosys-352731df4e0bf344cd20533a5561bc8ba3e07853.tar.bz2 yosys-352731df4e0bf344cd20533a5561bc8ba3e07853.zip |
Merge pull request #2041 from PeterCrozier/struct
Implementation of SV structs.
Diffstat (limited to 'frontends/ast/ast.cc')
-rw-r--r-- | frontends/ast/ast.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc index 689fa9fb4..03fd272da 100644 --- a/frontends/ast/ast.cc +++ b/frontends/ast/ast.cc @@ -171,6 +171,9 @@ std::string AST::type2str(AstNodeType type) X(AST_PACKAGE) X(AST_WIRETYPE) X(AST_TYPEDEF) + X(AST_STRUCT) + X(AST_UNION) + X(AST_STRUCT_ITEM) #undef X default: log_abort(); |