From b5cd7a01793294a53d91a2cd3ee9bbca5b9a8c54 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Fri, 6 Jun 2014 17:40:04 +0200 Subject: added while and repeat support to verilog parser --- frontends/ast/ast.cc | 1 + frontends/ast/ast.h | 1 + 2 files changed, 2 insertions(+) (limited to 'frontends/ast') 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, -- cgit v1.2.3