aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast
diff options
context:
space:
mode:
authorStefan Biereigel <stefan.biereigel@cern.ch>2019-05-22 14:22:42 +0200
committerStefan Biereigel <stefan.biereigel@cern.ch>2019-05-23 13:57:27 +0200
commit9df04d7e7520884bfc40004bb131cfdb474061c7 (patch)
treeca6176db69fb4ce136dddceb0f14c3d61b3bbed6 /frontends/ast
parentca4694735455512162da1d4a24429ecf350a8abe (diff)
downloadyosys-9df04d7e7520884bfc40004bb131cfdb474061c7.tar.gz
yosys-9df04d7e7520884bfc40004bb131cfdb474061c7.tar.bz2
yosys-9df04d7e7520884bfc40004bb131cfdb474061c7.zip
make lexer/parser aware of wand/wor net types
Diffstat (limited to 'frontends/ast')
-rw-r--r--frontends/ast/ast.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h
index 281cbe086..6c19dc7e6 100644
--- a/frontends/ast/ast.h
+++ b/frontends/ast/ast.h
@@ -173,7 +173,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, range_valid, range_swapped, was_checked;
+ bool is_input, is_output, is_reg, is_logic, is_signed, is_string, is_wand, is_wor, range_valid, range_swapped, was_checked;
int port_id, range_left, range_right;
uint32_t integer;
double realvalue;