aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/ast.h
diff options
context:
space:
mode:
authorJannis Harder <me@jix.one>2022-12-01 00:58:32 +0100
committerGitHub <noreply@github.com>2022-12-01 00:58:32 +0100
commit4a2b7287ca45b3bafb050088a448cc8bdd1653d0 (patch)
treec4434718f8046a1015eb553f2c244866af82c923 /frontends/ast/ast.h
parentf9db7c0599d87fa7d61b72979029c5894e3dbe6b (diff)
parent64f88eb7f120554ab662baf608b6f48d5eec3e6d (diff)
downloadyosys-4a2b7287ca45b3bafb050088a448cc8bdd1653d0.tar.gz
yosys-4a2b7287ca45b3bafb050088a448cc8bdd1653d0.tar.bz2
yosys-4a2b7287ca45b3bafb050088a448cc8bdd1653d0.zip
Merge pull request #3551 from daglem/struct-array-swapped-range
Support for arrays with swapped ranges within structs
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 80497c131..142ec0801 100644
--- a/frontends/ast/ast.h
+++ b/frontends/ast/ast.h
@@ -203,7 +203,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
+ std::vector<bool> multirange_swapped; // true if range is swapped
// this is set by simplify and used during RTLIL generation
AstNode *id2ast;