aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-06-06 17:40:04 +0200
committerClifford Wolf <clifford@clifford.at>2014-06-06 17:40:04 +0200
commitb5cd7a01793294a53d91a2cd3ee9bbca5b9a8c54 (patch)
tree54118df8df6d0e9919c22cafb5a1cda924158633 /frontends/ast
parentf9c1cd5edba5acb4d9b9dd287c7265111cf22087 (diff)
downloadyosys-b5cd7a01793294a53d91a2cd3ee9bbca5b9a8c54.tar.gz
yosys-b5cd7a01793294a53d91a2cd3ee9bbca5b9a8c54.tar.bz2
yosys-b5cd7a01793294a53d91a2cd3ee9bbca5b9a8c54.zip
added while and repeat support to verilog parser
Diffstat (limited to 'frontends/ast')
-rw-r--r--frontends/ast/ast.cc1
-rw-r--r--frontends/ast/ast.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/frontends/ast/ast.cc b/frontends/ast/ast.cc
index f2f2d0e69..105645f95 100644
--- a/frontends/ast/ast.cc
+++ b/frontends/ast/ast.cc
@@ -137,6 +137,7 @@ std::string AST::type2str(AstNodeType type)
X(AST_DEFAULT)
X(AST_FOR)
X(AST_WHILE)
+ X(AST_REPEAT)
X(AST_GENVAR)
X(AST_GENFOR)
X(AST_GENIF)
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h
index 72a2a4600..8f9c35349 100644
--- a/frontends/ast/ast.h
+++ b/frontends/ast/ast.h
@@ -117,6 +117,7 @@ namespace AST
AST_DEFAULT,
AST_FOR,
AST_WHILE,
+ AST_REPEAT,
AST_GENVAR,
AST_GENFOR,