diff options
author | Jannis Harder <me@jix.one> | 2022-12-01 00:58:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-01 00:58:32 +0100 |
commit | 4a2b7287ca45b3bafb050088a448cc8bdd1653d0 (patch) | |
tree | c4434718f8046a1015eb553f2c244866af82c923 /frontends/ast/ast.h | |
parent | f9db7c0599d87fa7d61b72979029c5894e3dbe6b (diff) | |
parent | 64f88eb7f120554ab662baf608b6f48d5eec3e6d (diff) | |
download | yosys-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.h | 2 |
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; |