aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/ast.h
diff options
context:
space:
mode:
authorclairexen <claire@symbioticeda.com>2020-10-01 18:17:36 +0200
committerGitHub <noreply@github.com>2020-10-01 18:17:36 +0200
commit7e2fc2eaeb70179c8da3e5dc8be800f486d5b912 (patch)
treefe4cf490249e3939b1461c0dc27f70ad5652fd2b /frontends/ast/ast.h
parent2412e754953595627e8c87ff0aa773929c71a852 (diff)
parent7ed0e23e19871e36bbfd332437125d50d3251f0d (diff)
downloadyosys-7e2fc2eaeb70179c8da3e5dc8be800f486d5b912.tar.gz
yosys-7e2fc2eaeb70179c8da3e5dc8be800f486d5b912.tar.bz2
yosys-7e2fc2eaeb70179c8da3e5dc8be800f486d5b912.zip
Merge pull request #2378 from udif/pr_dollar_high_low
Added $high(), $low(), $left(), $right()
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r--frontends/ast/ast.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h
index 203b50021..1b8ed22ca 100644
--- a/frontends/ast/ast.h
+++ b/frontends/ast/ast.h
@@ -202,6 +202,7 @@ namespace AST
// if this is a multirange memory then this vector contains offset and length of each dimension
std::vector<int> multirange_dimensions;
+ std::vector<bool> multirange_swapped; // true if range is swapped, not used for structs
// this is set by simplify and used during RTLIL generation
AstNode *id2ast;