aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/ast.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2017-02-25 10:36:39 +0100
committerClifford Wolf <clifford@clifford.at>2017-02-25 10:36:39 +0100
commit5f1d0b1024981b6ede2988bf8c5812b37c87d0e9 (patch)
tree75e48829241c9c65b5c9c7a34cc21048285ea48b /frontends/ast/ast.cc
parent7af9727f78263d2fc41178396791f51a680acdfa (diff)
downloadyosys-5f1d0b1024981b6ede2988bf8c5812b37c87d0e9.tar.gz
yosys-5f1d0b1024981b6ede2988bf8c5812b37c87d0e9.tar.bz2
yosys-5f1d0b1024981b6ede2988bf8c5812b37c87d0e9.zip
Add $live and $fair cell types, add support for s_eventually keyword
Diffstat (limited to 'frontends/ast/ast.cc')
-rw-r--r--frontends/ast/ast.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc
index 06660102b..482acd364 100644
--- a/frontends/ast/ast.cc
+++ b/frontends/ast/ast.cc
@@ -84,6 +84,8 @@ std::string AST::type2str(AstNodeType type)
X(AST_PREFIX)
X(AST_ASSERT)
X(AST_ASSUME)
+ X(AST_LIVE)
+ X(AST_FAIR)
X(AST_COVER)
X(AST_FCALL)
X(AST_TO_BITS)