aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/ast.h
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-05-28 17:42:16 +0200
committerGitHub <noreply@github.com>2019-05-28 17:42:16 +0200
commit8e647901ef6ea484bfe41628f258c53590ae4114 (patch)
treebf7e482b1bf628c39cf81ac89622e67bbd9bfb08 /frontends/ast/ast.h
parent49d641d97f98526484d4ea7021f6ed15584fa4c9 (diff)
parentba2185ead89fdb6afeec6043ab18f2e045d80247 (diff)
downloadyosys-8e647901ef6ea484bfe41628f258c53590ae4114.tar.gz
yosys-8e647901ef6ea484bfe41628f258c53590ae4114.tar.bz2
yosys-8e647901ef6ea484bfe41628f258c53590ae4114.zip
Merge pull request #1050 from YosysHQ/clifford/wandwor
Refactored wand/wor support
Diffstat (limited to 'frontends/ast/ast.h')
-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 f90e683ad..46d482f1a 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, is_unsized;
+ bool is_input, is_output, is_reg, is_logic, is_signed, is_string, is_wand, is_wor, range_valid, range_swapped, was_checked, is_unsized;
int port_id, range_left, range_right;
uint32_t integer;
double realvalue;